this post was submitted on 01 Sep 2023
254 points (96.4% liked)

Programming

17495 readers
144 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] GaveUp@hexbear.net 6 points 1 year ago (1 children)

Preferring server side rendering is an interesting topic

Client side renderering is currently the preference because the company gets to offload the compute costs of their servers onto the clients' devices

As long as every website has a profit motive, even if it's just a single person trying to save some money on their AWS bills, server side rendering will never become the norm

[–] murtaza64@programming.dev 10 points 1 year ago (2 children)

The difference between generating JSON and generating HTML is minimal for the server, doesn't seem to me like server side rendered sites have significantly higher server compute costs. Also generally for SPAs, the server has to replicate whatever flow is happening on the client anyway to keep state in line (since the client can't be trusted)

[–] nekusoul@lemmy.nekusoul.de 1 points 1 year ago

The difference between generating JSON and generating HTML is minimal for the server

That should be true, but have you looked the HTML of any "modern" site? Dozens of nested elements, each tagged with multiple lines of attributes. Generating that is probably 10x the cost of generating the JSON.

Plus, with server side rendering you also have to recompute the HTML for the entire site, which often contains a whole bunch of non-trivial queries as well.

[–] GaveUp@hexbear.net 0 points 1 year ago

It's not just JSON and HTML. There's also graphic rendering and even machine learning models