Slide 22
Slide 22 text
Terminology
▪ SSR: known as Server-Side Rendering, this is where your HTML is not pre-
built as static
f
iles, but where you render HTML in real-time before
delivering it to the browser.
▪ CSR: known as Client-Side Rendering, this is where JavaScript libraries
manipulate the DOM of the webpage based on user interactivity and API
calls to backend or third-party services.
▪ Partial Hydration: this is essentially a hybrid of the two approaches. You
start
f
irst with some combination of SSG & SSR, then “hydrate” certain
components on the frontend to handle interactivity only if and when it’s
needed.