The first thing is to install is Node.js (https://nodejs.org/en/ ) in react we are not going to use node, we’re only going to use one of it’s built in tools, node package manager, or npm to install third party libraries.
After downloading run the below commands in the terminal.
npm i -g create-react-app@(current version)
Run the below commands in the terminal. to create a new react app
npx create-react-app my-app
cd my-app
npm start
This will launch our development server on port 3000.
A JavaScript build toolchain typically consists of: