Content
@
https://opensea.io/collection/dev-21
0 reply
0 recast
2 reactions
Justin Hunter
@polluterofminds
This is why these SSR companies want to lock you in.
2 replies
2 recasts
10 reactions
Gabriel Ayuso
@gabrielayuso.eth
What is an SSR company? SSR has been the norm since the 90s. CSR is the new kid on the block.
2 replies
0 recast
3 reactions
Justin Hunter
@polluterofminds
Vercel. AWS. Google Cloud. Also disagree. Static html is the OG
1 reply
0 recast
0 reaction
Gabriel Ayuso
@gabrielayuso.eth
no JS so the only way to render with logic was server side generated html
2 replies
0 recast
1 reaction
Andrei O.
@andrei0x309
Traditional websites weren't exactly like full SSR today they were more closely related to island architecture today. Where some parts were rendered on server and some parts are rendered on client. What happened is that the server mostly PHP in the old days rendered only the html with PHP evaluated parts in it while the JS if existed was sent to the client to maybe to additional rendering. It was possible to embed a JS engine inside PHP to render everything but no one did that because of the performance issues. Also today only the initial rendering is done by the server after that the rest of rendering is done by client while in the past all HTML was sent to the client with each request. The SSR term only started to get traction when JS also become a GP server language(node.js) it was never really used to describe how rendering works before that point. Also SSR as a JavaScript concept was impossible without creating a runtime outside of the browser.
1 reply
0 recast
1 reaction
Gabriel Ayuso
@gabrielayuso.eth
Yeah I used to build with PHP and very basic js that didn't do much other than simple ajax stuff. JQuery was the first thing that made dom generation on clients more popular but still not the norm. Browsers and computers were too underpowered.
1 reply
0 recast
2 reactions