React Website SEO

vir007

Regular Member
Joined
Jul 15, 2014
Messages
259
Reaction score
53
Hi All,

We are re designing our website in React and we are in process to launch it.

When I checked its source code I saw that only meta tags are coming up but no other html content is there, only few Javascript calls.

I know that Google can read Javascript but I am afraid if it create some indexing or caching issues going forward.

Is there any way in React to show the whole html in source code as it appear in normal websites.

Can we launch it right away without worrying about the html code in the source code.
 
You can simply use React Developer Tools extension for Chrome browser This will let you to see Component Tree of your React app. And also, you can inspect props and state of each component through this extension
 
Yes it's possible, you should use SSR, google it you'll find a few good tutos on how to implement it. I'd recommend using Vue actually it's easier. We decided in the end to move everything under wordpress as it was too much of a hassle for us / too costly to implement SSR.
 
Hi All,

We are re designing our website in React and we are in process to launch it.

When I checked its source code I saw that only meta tags are coming up but no other html content is there, only few Javascript calls.

I know that Google can read Javascript but I am afraid if it create some indexing or caching issues going forward.

Is there any way in React to show the whole html in source code as it appear in normal websites.

Can we launch it right away without worrying about the html code in the source
 
Back
Top