how to check globally installed npm packages code example
Example 1: npm list global packages
npm list -g --depth 0
Example 2: install npm package globally
npm install package-name -g
npm list -g --depth 0
npm install package-name -g