๐Ÿ“ฆ savankansagra / Learning_React

It is first learning repository with all the commands.

โ˜… 1 stars โ‘‚ 0 forks ๐Ÿ‘ 1 watching
๐Ÿ“ฅ Clone https://github.com/savankansagra/Learning_React.git
HTTPS git clone https://github.com/savankansagra/Learning_React.git
SSH git clone git@github.com:savankansagra/Learning_React.git
CLI gh repo clone savankansagra/Learning_React
savan_kansagra savan_kansagra Adding the new expense component 6c66936 4 years ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ myfirstapp
๐Ÿ“„ .gitignore
๐Ÿ“„ package-lock.json
๐Ÿ“„ package.json
๐Ÿ“„ README.md
๐Ÿ“„ README.md

Learning_React

It is first learning repository with all the commands.

Command that need to Run to initilize the project.

1) check that node version $node -v ! if not is not installed or version is less then 14.0 then install node or update the node. @ installing the nodejs = https://linuxize.com/post/how-to-install-node-js-on-ubuntu-18.04/ @ updating the nodejs = https://stackoverflow.com/questions/8191459/how-do-i-update-node-js

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