DEV Community

Cover image for Client Side Rendering vs Server Side Rendering
Akhila Ariyachandra
Akhila Ariyachandra

Posted on • Updated on • Originally published at akhilaariyachandra.com

Client Side Rendering vs Server Side Rendering

PS - This was originally posted on my blog. Check it out if you want learn more about React and JavaScript!

You might have heard the terms Client Side Rendering (CSR) and Server Side Rendering (SSR) when working with Single Page Application (SPA) technologies like React and Angular and how they might affect the performance of your site. Let's try to figure out what CSR and SSR actually are and how they change the way your site works.

How SPA Client Side Rendering works

When the browser makes the initial request to the SPA server, the server returns the HTML file which looks like this.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta
      name="viewport"
      content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
    />

    <title>Single Page Application</title>
  </head>
  <body>
    <--The "root" div will get content from the JS later -->
    <div id="root"></div>
    <script src="index.js"></script>
  </body>
</html>
Enter fullscreen mode Exit fullscreen mode

After the initial HTML and CSS loads the browser requests the rest of the application which comes in a JS file. While this JS is being loaded and parsed, the page will be blank. The content will be viewable and intractable once the JS file has been parsed.

Client Side Rendering Diagram

The advantage of Client Side Rendering (CSR) is once the page loads all subsequent navigation within the site will be fast as no more pages needed to be loaded from the server unlike a Multi Page Application.

One disadvantage is the user of the site will have to wait a long time until he/she sees anything meaningful on the screen during the first render. This can take a long time depending of the size of the app, speed of the connection and the power of the device the site os being viewed in (especially in low end mobile devices).

Another disadvantage comes when looking at Search Engine Optimization (SEO). Web crawlers might not parse the JavaScript and load the content, so they might only see an empty page.

JavaScript Single Page Application Frameworks like React and Angular are client side rendered by default.

Enter Server Side Rendering

We can solve these issues by using Server Side Rendering. SSR is rendering the app to a string (HTML) in the server itself and sending it to the browser. This takes the work of rendering from the client to the server. So when the browser receives the initial HTML file there is content for the user to see unlike a CSR site where the entire JS file needs to be downloaded and parsed before something meaningful can be shown on screen. The site becomes interactive once the JS file has been downloaded and parsed.

Server Side Rendering Diagram

The downside of using just SSR is that it makes navigation within the site slow as each page needs to be rendered and fetched from the server. This also increases the load on the server.

Is there a way to use both CSR and SSR as needed?

CSR makes out app faster and more interactive. SSR can speed up the first render of the site and improve SEO. We don't to sacrifice the features of one by going fully with the other. Instead we can use an Universal Web App.

Universal Web App

Universal Web Apps combine the best of the both Client Side Rendering and Server Side Rendering. In an Universal Web App, the initial render will be done in the server, and once the page loads client side rendering will take over. This makes sure that we have good SEO, a quick first render and speed when browsing in the app.

There are a couple of frameworks which allow us to build UWAs quickly.

Conclusion

I hope you found this useful on learning about Server Side Rendering and Client Side Rendering. If you have any suggestions on how I can improve the post or any other comments please leave one below. 😊

Top comments (8)

Collapse
 
prashantandani profile image
Prashant Andani • Edited

Hi Akhila,
In the below statement did you mean "Server" in the place of browser
"In a Universal Web App, the initial render will be done in the browser, and once the page loads client side rendering will take over."

Collapse
 
akhilaariyachandra profile image
Akhila Ariyachandra

Yes I meant server and just fixed it. Thanks for catching that!!! 😊

Collapse
 
wintercounter profile image
Victor Vincent

My disadvantages against SSR:

  • Higher costs for backend infrastructure.
  • Many workarounds are necessary.
  • 3rd party tools not supporting.

I wouldn't say "have to wait a long time", it's simply not true. Usually the overhead is not bigger than ~200ms for static pages. The issue comes when you need extra API calls to construct your page, but even that case can be handled by injecting the initial responses into your index.html. It's a much cheaper solution and you don't need Node for it.

For SEO there is Prerender.io and similar solutions.

Collapse
 
Sloan, the sloth mascot
Comment deleted
Collapse
 
wintercounter profile image
Victor Vincent

What do you mean?

Collapse
 
codegenty profile image
Emekus

browser caching.

Thread Thread
 
wintercounter profile image
Victor Vincent

Yes, I mean by that what you mean? :) What's the problem with CSR regarding browser caching?

Collapse
 
elmuerte profile image
Michiel Hendriks

When I started webdevelopment I did Developer Side Rendering. This will be the next step ;)