npm install global code example

Example 1: npm list global packages

npm list -g --depth 0

Example 2: install npm globally

npm install npm@latest -g

Example 3: npm install package as developer dependency

npm install --save-dev package
# example:
npm install --save-dev nodemon

Example 4: npm install package globally

#Syntex
npm install packagename -g

#example
npm install express -g

Example 5: how to install any package in node.js

#how to install any specific package in nodejs Application
# Syntex
npm install packagename

# example:
npm install express
npm i express

#if you install globally then type 
npm install express -g

Example 6: install npm package globally

npm install package-name -g