skip to Main Content

I want to use React JS for my blog website. Is this possible?
SEO is important for me.

3

Answers


  1. U can use nextjs. It a framework for SEO web reactjs.
    It includes server side render (SSR), …

    Login or Signup to reply.
  2. As @Thanh Ngo said, you can use Nextjs

    But you can also create a server inside your project. Create a directory inside your project “server” and create a new directory “views”. You can use Expressjs or another one. Take a template engine like Pugjs.
    Now you’re ready to do SEO with React. In your browser, go to the “network conditions” tab and remove checkbox “select automatically” and select “googlebot”. You’re now ready 🙂

    If you don’t understand something in my explanations tell me 🙂

    Login or Signup to reply.
  3. I highly recommend you can use react-helmet. that can create many meta tag dynamic SEO. It’s very useful with google seo

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search