NPM = node package manager
NPM is an online service where one can download (and upload) packages, and a program (bundled with Node.js) that helps you install and manage them.
Useful npm packages:
- nodemon: monitors node server and refreshes each time you cange and save the code. To install:
npm install -g nodemon. To use with a server:nodemon index.js.
See also: JS Packages, JS Modules