Development Methods & Design

Server-Side Rendering

English

Overview

A rendering approach where a web page's initial HTML is generated on the server rather than in the browser.

Details

Often abbreviated SSR. Unlike client-side rendering, the browser receives HTML that's already close to complete before it even runs JavaScript, which is considered an advantage for initial load speed and SEO. Frameworks like Next.js support it out of the box.

More Programming terms