globally installed npm packages code example
Example 1: npm list global packages
npm list -g --depth 0
Example 2: npm install package globally
#Syntex
npm install packagename -g
#example
npm install express -g
Example 3: how to install npm packages
npm i <package>