|
|
|
|
|
by andrewfromx
507 days ago
|
|
wow. this is very true and I never thought it that way before. I'm an old school ruby on rails web app dev and I never liked the one main div and then DOM manipulation on the same page for every click. Some react devs literally don't even know that HTML can be rendered server side. |
|
Sadly, many do. Only later do they realize it is orders of magnitude slower than rendering a template and more cpu intensive. Combine that with the fact that node.js prefers to have an IO heavy workload, but instead we get a cpu heavy one.
React is fine, but SSR has a long way to go before it is “good”.