Posts for server-side

Deven
Deven wrote

Server-Side Rendering in Angular

The technology that allows us to run our Angular applications on the server is described in the Angular docs as Angular Universal.  Angular Universal generates static application pages on the server through a process called server-side rendering (SSR).  It can generate and serve those pages in response to requests from browsers. It can also pre-generate pages as HTML files that you serve later. A […]

March 12, 2020 in Angular
Deven
Deven wrote

Server-side rendering in React.js

React offers an approach to render components to strings specifically for the case of server-side rendering. That is accomplished by the react-dom package, that manages the React to Dom conversion.However, we don’t need to simply render a view, however the correct view. That’s where isomorphic or Universal routing comes into the picture. Server-side rendering in […]

December 5, 2019 in React & Tutorials