Srinu Guntamukkala
Srinu Guntamukkala

Reputation: 19

Is it possible to implement server side rendering with existing react application

React version - 18.2.0

Web URL : http://medicasapp.com/

Above application was developed in React JS and is already in live .We are unable to inspect Meta title and description, even though using react-helmet

We need your help to convert CSR to SSR rendering.

Upvotes: 0

Views: 538

Answers (1)

iamalinski
iamalinski

Reputation: 355

The answer is YES!

But you'll need a few additional things.

  1. You need to run NodeJS on your server.
  2. You need to implement a backend framework (like Express).
  3. You need to render the React application on the server and then send it to the client side.

I have and example repo in github: https://github.com/iamalinski/react-express-ssr

Upvotes: 0

Related Questions