Node.js NPM
NPM is a package manager for Node.js packages, or modules.
NPM is used to download and install Node.js packages, or modules into your system.
Below NPM command is used to install express package.
D:\nodejs\node-website> npm install express
Below NPM command is used to install moment package.
D:\nodejs\node-website> npm install moment
Below NPM command is used to install path package.
D:\nodejs\node-website> npm install path
Below NPM command is used to install async package.
D:\nodejs\node-website> npm install async
Below NPM command is used to install mysql package.
D:\nodejs\node-website> npm install mysql
Comments