Table of contentsClick link to navigate to the desired location
This content has been automatically translated from Ukrainian.
CSR (Client Side Rendering) – is a web rendering technique where content is created on the client side, that is, on the user side, not on the server. In this approach, the entire process of generating HTML, CSS and JavaScript takes place in the user's browser.
CSR is used to improve website performance and add interactivity to the end user. This allows you to create more dynamic web applications.
How to distinguish CSR from SSR (Server Side Rendering)?
CSR and SSR are two different content rendering strategies. In SSR, content is created on the server before it is delivered to the browser, while in CSR, generation occurs on the client side.
What are the advantages of CSR compared to SSR?
One of the main advantages of CSR is the ability to download only the necessary data, which allows you to reduce page load time and improve the user experience.
Example CSR
For a better understanding of CSR, modern web applications can be mentioned that have smooth transitions between pages and are dynamically updated without a complete reboot. For example, social networks where when scrolling down a page, new posts are loaded without reloading the page.
This post doesn't have any additions from the author yet.