DEV Community

Discussion on: Angular Server-Side Rendering(SSR): The Browser Is Not The Server

Collapse
 
andlewis profile image
Andrew Lewis

Angular Universal is a great proof of concept, but I’ve never seen an officially supported implementation, or one that actually uses the current version of angular, or even decent documentation. It seems like someone thought it would be a neat feature to add a while ago and got it 80% there, then never touched it again.

Collapse
 
navix profile image
Oleksa Novyk

I use SSR in production a lot. It works fine.

You can check out the official guide: angular.io/guide/universal

With Angular 9 also added pre-rendering feature, it is a simple way to render your app on build (of course if you know all the routes). Nice guide: samvloeberghs.be/posts/angular-v9-...

Collapse
 
deekshithrajbasa profile image
Deekshith Raj Basa 🔥

Wow that an in detail explaination with an example