Konrad Kowalski (rootsher)Principal Platform & Reliability Architect010011011001101100110010100001110000101101101011

React

posts (4)

  1. Frontend Rendering: from server-side pages to hybrid rendering16/17

    Server Components: moving the execution boundary

    The rendering boundary stops running through the page and starts running through the module graph. Some components never have a client-side implementation.

  2. Frontend Rendering: from server-side pages to hybrid rendering13/17

    Selective and progressive hydration: not everything deserves CPU now

    Hydration stops being one startup task. Client CPU becomes a resource allocated by priority and by the user's real intent.

  3. Frontend Rendering: from server-side pages to hybrid rendering10/17

    Streaming SSR: stop waiting for the whole tree

    The response stops being atomic. The server sends finished fragments and the slowest dependency no longer blocks the entire document.

  4. Frontend Rendering: from server-side pages to hybrid rendering6/17

    Hydration: connecting HTML with a working application

    The server sends the result of rendering, not the application. The browser has to rebuild the component tree and wire it to the existing DOM.