How do I list the user-installed package ONLY in npm? When I do npm -g list it outputs every package and their dependencies, which is not what I wa
npm
npm -g list
You can get a list of all globally installed modules using:
ls `npm root -g`