Node is a runtime for Javascript which allows you to run Javascript code on your computer and servers, in addition to the client side/browser.
In order to install it you need to get the installer Node and then you will have access to thousands of libraries on npm.
Once it is installed you can use it like this:
npm install -g create-react-app
create-react-app my-app
cd my-app/
npm start