how to check all installed npm packages code example
Example 1: list npm packages installed globally
npm list -g --depth 0
Example 2: how to view a list of installed npm packages
npm list -g
Example 3: npm list all installed packages
npm list -g --depth=0