SSR (Server-Side Rendering)
Server Side Rendering
A technique where the web server assembles the page content and sends the finished result to the browser.
In Simple Terms
SSR is a technique where the server assembles the page content on the spot when it receives a request and delivers a fully built result to the browser. It's commonly used on sites like news platforms that need to display the latest content quickly. Since the browser doesn't have to build the page from scratch, the time until the first screen appears is reduced.
Behind the Name
SSR stands for Server-Side Rendering — combining Server, Side, and Rendering. The name highlights where the preparation work happens when a web page is displayed: on the server side.
Take a Closer Look!
SSR is a technique where the web server receives a request from the browser, assembles the web page data on the spot, and sends it back ready to display.
It helps deliver smooth rendering even on sites whose content changes with every visit, with the server handling the heavy lifting of building the page.
To put it simply, SSR is like receiving a fully cooked meal at a restaurant.
Because the dish is already plated when it arrives at your table, you can start eating the moment it's set down.
By contrast, having the browser build the page itself is like receiving only the raw ingredients and cooking your own meal at the table.
SSR also makes it easier for search engines to correctly read and understand a site's content.
Because the text, images, and layout are all in place from the moment the data arrives, it's straightforward for machines to parse the page.
It also helps social platforms smoothly extract article images, titles, and other metadata when a URL is shared.