Installation React Js on Windows:
Step 1: First Install Node.js on Your Computer, for windows. Click on this link https://nodejs.org/en/download/. Here install the LTS version . Once downloaded open NodeJS without disturbing other settings, click on the Next ,Next button until it’s completely installed.
Step 2: Open command prompt to check whether it is completely installed or not.
Run Below command in CMD.
node -v
Step 3: Now Time to create our first react app. Open a folder or create and go that folder and run below command and wait some time for installation:
* Run these command command prompt or visual studio code
npx create-react-app my-app(or write your own react app name)
Step 4: Congratulation your first react app created .Now in the terminal run the below command:
cd my-app
npm start
Now you can check on your browser, react app running.