CSR (Client-Side Rendering)

noun · web architecture

1.

A client-side rendering technique where the browser downloads a minimal JavaScript application, then dynamically builds the entire user interface in the DOM — delivering smooth interactivity comparable to a native application.

2.

The standard web architecture of React and Single Page Applications (SPA), where the server sends a nearly empty HTML page along with a JavaScript bundle that handles routing, rendering, and state management entirely in the browser.

3.

The preferred rendering model for interactive business applications, dashboards, and interfaces behind authentication — where SEO is secondary and interface responsiveness is the absolute priority.

See also
ReactJavaScriptSPAUX