Node.js Third Party Modules
- The 3rd party modules can be downloaded using NPM (Node Package Manager).
- 3rd party modules can be install inside the project folder or globally.
Load and Use Third Party Module with Example:
3rd party modules can be downloaded using NPM.
//Syntax npm install -g module_name // Install Globally npm install --save module_name //Install and save in package.json //Install express module npm install --save express npm install --save mongoose //Install multiple module at once npm install --save express mongoose