What is SSR Server side rendering?

· · 3318 views

How to do server side rendering in vue.js? Which framework is better to ssr?

0
1 Answer

Server-side rendering (SSR), is the ability of an application to contribute by displaying the web-page on the server instead of rendering it in the browser. Server-side sends a fully rendered page to the client; the client’s JavaScript bundle takes over and allows the SPA framework to operate. There is also client-side rendering which slows down the procedure of viewing and interacting with the web page.

Server-side rendering (SSR)

There are many popular JavaScript frameworks to create Server-side rendering (SSR) apps:

  • Express.js
  • Next.js (built upon React)
  • Nuxt.js (built upon Vue.js)
  • Gatsby.js

Advantages of SSR

  • It enables pages to load faster.
  • It plays an important role in SEO.
  • It assists with loading the page when the user is on outdated device, or has a slow internet connection.
0

Please login or create new account to participate in this conversation.