how to see what npm packages are installed globally code example
Example 1: npm list global packages
npm list -g --depth 0
Example 2: how to find global npm packages are installed
npm root -g
Example 3: how to install npm packages globally
npm i -g <package>