DEV Community

Cover image for Show Installed Global Node Deps
Agustinus Nathaniel
Agustinus Nathaniel

Posted on Originally published at sznm.dev

Show Installed Global Node Deps

To check node dependencies which are installed globally.

pnpm

pnpm list -g --depth 0
Enter fullscreen mode Exit fullscreen mode

references:

npm

npm list -g --depth=0
Enter fullscreen mode Exit fullscreen mode

references: https://docs.npmjs.com/cli/v9/commands/npm-ls#global

Yarn

yarn global list
Enter fullscreen mode Exit fullscreen mode

references: https://classic.yarnpkg.com/en/docs/cli/global

Top comments (0)