Node Command Line Init – Install & Other

Create a new package.json file => npm init

To Download All node dependencies node_modules => npm install

To Clear Terminal => clear

To address issues => npm audit fix –force

To Start Watching For Changes In Files => npm run start

Stop Watching => Ctrl + C

Scroll to Top