DEV Community

Discussion on: Which one learn first, React.js or Node.js?

Collapse
 
chsanch profile image
Christian Sánchez

Node.js is JavaScript runtime environment, it would execute your JavaScript code.
React is a JavaScript library for building user interfaces, so you need to write JavaScript code and run it on node.
You probably need how to write JavaScript code first, then you should learn how to use React as a library, and node will run all of it.