Are any products still using it? What happened?
Ask HN: What happened to server-side rendering?
1–10 of 74 posts
Re: Ask HN: What happened to server-side rendering?
#2https://github.com/zeit/next.js/
It gives you SSR with React out of the box. It's really nice to work with, and flexible enough that we haven't had issues with more customized situations.
Re: Ask HN: What happened to server-side rendering?
#3[1]: https://docs.microsoft.com/en-us/aspnet/core/razor-component...
Re: Ask HN: What happened to server-side rendering?
#4While not JavaScript, there's now Razor Components[1]. It doesn't work exactly like isomorphic JS, as it operates more like a terminal session (the server sends down VDOM mutations to the client). I'm not entirely sold on the approach yet, but I am going to be keeping an eye on it. [1]: https://docs.microsoft.com/en-us/aspnet/core/razor-component...
Re: Ask HN: What happened to server-side rendering?
#5While not JavaScript, there's now Razor Components[1]. It doesn't work exactly like isomorphic JS, as it operates more like a terminal session (the server sends down VDOM mutations to the client). I'm not entirely sold on the approach yet, but I am going to be keeping an eye on it. [1]: https://docs.microsoft.com/en-us/aspnet/core/razor-component...
Re: Ask HN: What happened to server-side rendering?
#6Many large sites like Marvel.com, Nike.com, Invisionapp.com, hulu.com and many more run on server-side rendered React, see the Next.js showcase for a more complete list: https://nextjs.org/showcase
Re: Ask HN: What happened to server-side rendering?
#7Re: Ask HN: What happened to server-side rendering?
#8Re: Ask HN: What happened to server-side rendering?
#91) Lack of reliable real time ability to detect device and compute size. 2) Increased computation complexity of what to render - why put that load on the server when devices are now commensurately as fast - or even faster given the trend to distributed services that maximize network throughput over power.
I'm not even sure why it was so popular in the first place; client server separation is a good thing, IMHO.
Re: Ask HN: What happened to server-side rendering?
#10While not JavaScript, there's now Razor Components[1]. It doesn't work exactly like isomorphic JS, as it operates more like a terminal session (the server sends down VDOM mutations to the client). I'm not entirely sold on the approach yet, but I am going to be keeping an eye on it. [1]: https://docs.microsoft.com/en-us/aspnet/core/razor-component...
I played around with a Blazor POC not to long ago. It's something else to hit a breakpoint in Chrome in a DLL running on the mono runtime. It's wild tbh. I was able to leverage the trusty old C# Timer class to increment a counter every second and it ran just fine.