Questions tagged [server-side-rendering]

Serverside rendering is a technique for rendering a client-side app on the server.

Rendering a client application on the server results in a faster experience for end users since they do not have to wait for assets to load before they can see and interact with an app. This is accomplished by using isomorphic code: code which is used on both the server and the client.

4406 questions
2
votes
1 answer

Does react server side render wait for async calls to finish?

With react server side rendering, is the rendered HTML only sent to the client once the state has been fully loaded? For example, if a user requests a page that has multiple async API calls, will the client then have to wait for those API calls to…
whiteElephant
  • 263
  • 1
  • 6
  • 21
2
votes
2 answers

Async data change when using server side render in Vue

I want to use Vue in server side rendering, but the content data inside template have to request from the other CMS server.