Promptles
React & Frontend

CSR (Client-Side Rendering)

advanced

Definition

A way of building websites where the browser receives a mostly empty page plus a chunk of code, then assembles the visible content right there on your device. The first load can feel slow because nothing is visible until the code finishes running, but after that, moving between pages is snappy.

In the wild

You open a single-page web app: a project management tool, say. For a brief moment the screen is blank, then it suddenly snaps into life as the browser builds the interface. From then on, switching between sections is instant because nothing more has to be downloaded.

More from React & Frontend