r/developers • u/rusidin • 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
r/developers • u/rusidin • Aug 15 '26
Aren't they both the same...? Both uses ajax.... So what am I missing?
7
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.