SSR (Server-Side Rendering)

noun · web development

1.

A server-side rendering technique where the HTML of a web page is dynamically generated on the server for each user request, before being sent to the browser — guaranteeing complete content that is immediately readable by search engines.

2.

A rendering architecture adopted by modern frameworks like Next.js to combine the advantages of native SEO with React's interactivity — the server pre-generates the page, then client-side JavaScript takes over via hydration.

3.

A web performance strategy that reduces the perceived Time to First Byte (TTFB) by delivering display-ready HTML, eliminating the white screen typical of client-side-only rendered applications.

See also
Next.jsReactSEOWeb performance