<Aaron />

How to Check Your Globally Installed Packages

Jan 18, 2020 1 min read

There is a quick and easy way to check what your globally installed packages are.

1npm list -g --depth 0

list -g: lists every globally installed package.

--depth 0: {optional} only shows top-level packages; all dependencies are ignored.

Find a mistake? Help me fix it by submitting a pull request.

← back to all posts