Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 495 Bytes

EssentailCommands.md

File metadata and controls

37 lines (26 loc) · 495 Bytes

Some useful Commands

To use the different node versions.

nvm install 12.18.3
nvm use 12.18.3

To start the react-app

npm init react-app my-app
cd my-app
npm start

To end the react app Ctrl+c (In linux)

To install the all dependencies in the package.json

npm install

To install the styled-components library

npm i --save -styled-components

To production build react app on your PC

npm install -g serve
serve -s build