• 奇舞推荐

  • SEE Conf 2020 演讲资料

    第三届 SEE Conf PPT 出来了。

    奇舞推荐
  • 2019 前端技术发展回顾

    这篇梳理了 2019 年值得了解的技术发展脉络,全面~

    奇舞推荐
  • Serverless 与前端工程化结合:让项目 5 分钟上线成为可能

    本文通过分析美团金服前端工程化的演进方式,分享了如何多快好省地复用集团的基础设施或者开源方案提高研发效率的实践经验。

    Serverless奇舞推荐
  • 读原文

  • Easier Node.js streams via async iteration

    Working with Node.js streams is much more pleasant if we use asynchronous iteration. This blog post explores how to do that.

    NodeJavaScript读原文
  • Front-End Performance Checklist 2020

    “Performance isn’t just a technical concern: it affects everything from accessibility to usability to search engine optimization, and when baking it into the workflow, design decisions have to be informed by their performance implications. Performance has to be measured, monitored and refined continually, and the growing complexity of the web poses new challenges that make it hard to keep track of metrics…”

    性能读原文
  • 其它

  • CSS 工具类和“关注点分离”

    这篇文章详实地梳理了 CSS 诸多方案之间的演变历程和权衡取舍。

    CSS
  • H5 秒开方案大全

    总的思路和方向:在整个链路中减少中间环节;尽可能的预加载、预执行。

    性能优化
  • 前端日志在 Web 端的实现

    Logan 是美团点评推出的大前端日志系统。本文介绍了 Logan 在 Web 端的应用背景、技术实现、美团点评的实践、开源整体进展以及未来规划。

    日志
  • 使用 rust 和 wasm 实现基于指针碰撞的高效 virtual dom 运算

    Dodrio 是一个新的虚拟 DOM 库,旨在通过广泛使用快速指针碰撞分配来利用 Wasm 线性内存和 Rust 的低层级控制的优势。

    WebAssembly
  • 从 V8 源码理解 Javascript 函数是一等公民

    “本文从 V8 源码的角度分析为什么 Javascript 语言中的函数是一等公民。首先会介绍一等公民的概念,然后对比一下 C 语言函数和 Javascript 函数的底层表示,以便理解为什么说 Javascript 函数是一等公民。”

    V8JavaScript