Technology
Server-Side Rendering
Acronymes
SSRUpdated at
Contexts
Web Dev
Server-Side Rendering (SSR) is a web development technique where web pages are generated dynamically on the server before being sent to the user’s browser. Unlike static pages, which are pre-built, SSR allows for content to be rendered in real-time based on user requests. This improves SEO and ensures that users receive up-to-date content without requiring client-side JavaScript execution. However, SSR can increase server load since each request triggers page generation before being delivered to the browser. It is commonly used for websites that require personalized or frequently updated content.
[1]Mozilla