Hydration
Hydration is the process by which client-side JavaScript attaches event listeners and application state to server-rendered HTML, turning static markup into a fully interactive application without re-rendering it from scratch.
7 resources across 2 libraries
Glossary Terms(4)
Marko
Marko is a fast, HTML-based JavaScript UI framework created at eBay that emphasizes streaming server-side rendering and fine-grained reactivity for large-scale…
Single Page Application (SPA)
A Single Page Application (SPA) is a web application that loads a single HTML page and dynamically updates content in the browser using JavaScript, rather than…
Server-Side Rendering (SSR)
Server-Side Rendering (SSR) is a technique where a web page's HTML is generated on the server for each request and sent fully formed to the browser, rather tha…
Hydration
Hydration is the process by which client-side JavaScript attaches event listeners and application state to server-rendered HTML, turning static markup into a f…
Interview Questions(3)
Server-Side vs Client-Side Rendering
Server-side rendering (SSR) builds the full HTML for a page on the server and sends it ready to display, while client-side rendering (CSR) sends a near-empty H…
What Is Hydration in React?
Hydration is the process where React attaches event listeners and internal state to server-rendered HTML that is already sitting in the browser, turning static…
What Is the Time to Interactive (TTI) Metric?
Time to Interactive (TTI) is the point at which a page has rendered its content and the main thread is quiet enough that the browser can reliably respond to us…