Steps:
Install Node.js and NPM (Node Package Manager in your machine)
Use the following Links for downloads
https://nodejs.org/en/download
After downloading the installer, click on it and follow the installer’s instructions. Verify Installation You can run the following command to verify the node and npm version.
node –version
npm –version
The response should show your installed versions like the below image.
Run the below command to create your first react app
npx create-react-app first-app
Start your React App
npm install
npm start
Anupam Github URL: https://github.com/dwivedianu01/React/tree/main/first-app