It is first learning repository with all the commands.
https://github.com/savankansagra/Learning_React.git
2) Create the react application @https://reactjs.org/docs/create-a-new-react-app.html $npm install create-react-app $npx create-react-app myfirstapp
3) go to myfirstapp $cd myfirstapp
run below command to start the localhost server $npm start
How to see the output in browser. @http://localhost:3000/
4) Stop the server and again restart ther server 4.1) stop the server. 4.2) install all the dependencies $npm install 4.3) again start the server in development mode $npm start