Client-side Rendering (CSR)
Client-side rendering (CSR) is a technique where the initial HTML, CSS, and JavaScript are loaded, and then JavaScript is used to dynamically update the content of the page. This approach can provide a more interactive user experience as subsequent updates can happen without full page reloads.
- Rich interactions without page reloads
- Reduced server load
- Faster subsequent page loads
- Ideal for web applications with complex user interfaces