The nodemon package makes it possible to automatically reload your program when you modify any file in the source code.
Installing nodemon globally
npm install -g nodemon (or npm i -g nodemon)
Installing nodemon locally
In case you don't want to install it globally
npm install --save-dev nodemo...
Overview
Browsersync is a tool that allows for live file watching and browser reloading. It's available as a NPM package.
Installation
To install Browsersync you'll first need to have Node.js and NPM installed. For more information see the SO documentation on Installing and Running Node.js.
Once...