Hacker News new | ask | show | jobs
by ClayM 3954 days ago
Yes, you can absolutely run React components without the use of a server. You can edit an html file locally and put a react component in there. That's usually the first thing most React tutorials have you do.

If you're using a backend server you're just rendering the react stuff to html and sending it to the client.

1 comments

Great! I'll go check out some React tutorials.