How to start React,Angular and Node Apps
========> To start NODE App 1. download from Git 2. $npm i 3. $node app.js ========> To start Angular APP. 1. download from Git 2. Check Git application supported (node -v and npm -v) 3. using nvm change to above version in command prompt(Ex: $nvm use 10.14.2) 4. $npm i 5. $ng serve --port 2224 -o =========> To start React App. 1. download from Git 2. Check Git application React Version for (npm and node) and install (npm i) 3. To start React Application $PORT=3034 npm start npm install npm start open http://localhost:8080 (should start automatically ) Available Commands npm start - start the dev server npm run dev - create a developer build in `dist` folder npm run build - create a production ready build in `dist` folder
Comments
Post a Comment