IT:AD:npm:HowTo:List Packages
Summary
Once you downloaded packages, locally or globally, you'll want to know what you have available.
Process
- list local packages
npm list #or just top level npm list -depth 0
- list global packages
npm list -g #or just top level npm list -g -depth 0
Note: you can double check where the packages are being unpacked to using the npm root command:
npm root or npm root -g