Posts for rendering

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

Rendering Lists in Vue

Web applications handle lists of data for various reasons: showing a list of registered users, checkout page with items to be purchased or a log of previous transactions. A list is such a common construct that it’s a good fit for an abstraction. Vue makes it convenient to render lists of data with a nice […]

February 24, 2020 in Tutorials & Vue
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