Skip to main content

Development glossary

Server-side rendering

A rendering method where a server prepares page HTML before it reaches the browser, sometimes followed by client-side interactivity.

Example

A guide page can arrive as readable HTML while only its search filter needs browser JavaScript.

Why it matters

Used appropriately, it can support fast initial content, crawlability and smaller client bundles, but caching and server work still need planning.

Related terms