DEV Community

sakethk
sakethk

Posted on

SSR != SSC

SSR (Server side rendering) !== SSC (Server side components)

Server-Side Rendering (SSR) is a technique of rendering web pages on the server before sending them to the client. The server generates HTML content and sends it to the client. The client then loads up all your typical React JavaScript. Server-side components (SSC) are components that are rendered on the server and then sent to the client as HTML.

In summary, SSR is all about the initial page load when you’re using SSR, you are sending HTML to the client and then loading up all your typical React JavaScript. Server-side components (SSC) are components that are rendered on the server and then sent to the client as HTML.

Top comments (0)