Server Side Rendering
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 than being built up entirely by client-side JavaScript.
12 resources across 3 libraries
Glossary Terms(9)
htmx
htmx is a small JavaScript library that lets developers add AJAX, WebSockets, and dynamic UI updates directly in HTML attributes, enabling interactive applicat…
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…
Static Site Generation (SSG)
Static Site Generation (SSG) is a technique where a site's HTML pages are pre-rendered once at build time and served as plain static files, rather than being g…
Incremental Static Regeneration (ISR)
Incremental Static Regeneration (ISR) is a rendering technique, popularized by Next.js, that lets individual statically generated pages be regenerated in the b…
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…
JAMstack
JAMstack is a web architecture pattern built on JavaScript, APIs, and pre-rendered Markup — typically served as static files from a CDN and enhanced with dynam…
Server Actions
Server Actions are asynchronous functions that run exclusively on the server but can be called directly from client-side components, letting frameworks like Ne…
Study Notes(1)
Interview Questions(2)
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…
SSR vs SSG vs ISR: What Is the Difference?
SSR (server-side rendering) generates the HTML for a page on every request, SSG (static site generation) generates the HTML once at build time and serves the s…