Best of DOMSeptember 2023

  1. 1
    Article
    Avatar of hackernoonHacker Noon·3y

    Is Your Code Slow?: Avoid These 19 Common JavaScript and Node.js Mistakes

    We're spotlighting the top 19 performance pitfalls that can secretly slow down JavaScript and Node.js apps. We'll explore what causes them through illustrative examples and actionable solutions to optimize your code. The good news?

  2. 2
    Article
    Avatar of asayerasayer·3y

    Exploring Million.js, a high-performance web framework

    Million.js is a minimalistic JavaScript framework designed to handle DOM elements efficiently. Million.js uses a granular approach by updating only the necessary parts of the DOM. The Block virtual DOM is based on the concept of Blockdom, which facilitates virtual DOM diffing for re-rendering the actual DOM.

  3. 3
    Article
    Avatar of medium_jsMedium·3y

    How to Implement SSR(Server Side Rendering) in React 18

    How to implement SSR(Server Side Rendering) in React 18. Learn how to implement the “renderToPipeableStream” server API to render a React tree as HTML to a Node.js stream. In React 18, we'll explore React’s SSR feature with helpful code samples and examples.