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)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay