Common Commands Used In React
1) For creating react app.
npx create-react-app <my-app-name> {fast command}
Ex: F:\React JS TS\RTCV3\myreactdemo> npx create-react-app myfirstapp
2) To run react application
npm start
Ex: PS F:\React JS TS\RTCV3\myreactdemo\myfirstapp> npm start
3) To install git hub pages
npm install gh-pages --save-dev
Comments
Post a Comment