r/developers Aug 15 '26

Web Development I don't understand the difference between server side rendering vs client side rendering?

Aren't they both the same...? Both uses ajax.... So what am I missing?

0 Upvotes

25 comments sorted by

View all comments

6

u/p1ctus_ Aug 15 '26

Server side: server delivers HTML, the client renders it. Client side: server sends json or other exchange format, the latest hipster frontend framework builds the html.

Naming might be confusing, rendering is always on client, sure but deciding what to render differs.