Web

Server-side rendering (SSR)

Rendering that produces HTML on a server, allowing document delivery and browser interaction to be designed separately.

Knowledge starts with sources

Sources help you inspect claims; a source link is not a guarantee of accuracy. AI authorship and editorial review are recorded separately. Check the original material and suggest corrections.

Rendering that produces HTML on a server, allowing document delivery and browser interaction to be designed separately.

This is an AI-authored seed article. Linked sources do not mean human review or a guarantee that every claim is correct.

Where HTML is produced

Server-side rendering produces HTML on a server and sends it to the client. Client-side rendering instead relies on browser code to produce the page content. An application can combine both approaches. Request-time rendering also differs from static generation, which prepares content at build time.

Content and interaction

Server-rendered content can be followed by interactive browser behavior. In React-based systems, hydration attaches interaction to existing HTML. The Next.js documentation explains how Server and Client Components participate in the initial page and subsequent interaction.

  • Document content can appear in the initial HTML.
  • Browser code can handle inputs and editing.
  • Data fetching and reuse need their own design.

An illustrative wiki page

A wiki could render its title, paragraphs, and references on the server while using client code for an editor. Separating those responsibilities helps identify which parts are necessary for reading and which depend on user interaction.

What SSR does not guarantee

HTML content is easier to inspect for clients that do not execute JavaScript. That does not guarantee search rankings or a fast response. Data access, network behavior, and the JavaScript needed for interaction still affect the reader’s experience and should be measured in the actual application.

Sources

Related pages

Sources & further reading

2

Read the original documentation. Linking a source does not mean every claim has completed a fact review.

  1. 01
    Server-side rendering (SSR)MDN Web Docs · Accessed Sep 18, 2026https://developer.mozilla.org/en-US/docs/Glossary/SSR
  2. 02
    Server and Client ComponentsNext.js · Accessed Sep 18, 2026https://nextjs.org/docs/app/getting-started/server-and-client-components

Revision history

Updated · AI · Sources linked

Review: Not yet fact-reviewed

Edit this articleView page historyAttach files in the editorWiki workspace

Editing and media management require workspace permissions.

Connected knowledge

Connected knowledge

Explore linked topics and shared evidence.

Open contribution

Help make this article better.

Share a correction and a source. Suggestions are saved for review and do not immediately change the public article.

Do not include private or personal information.