mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
Add List Top-Level NPM Dependencies as a javascript til
This commit is contained in:
17
javascript/list-top-level-npm-dependencies.md
Normal file
17
javascript/list-top-level-npm-dependencies.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# List Top-Level NPM Dependencies
|
||||
|
||||
The `npm ls` command can be used to list all dependencies for a project.
|
||||
This will, however, produce an exhaustive list of all dependencies including
|
||||
dependencies of dependencies. A list this large probably isn't going to be
|
||||
of much use.
|
||||
|
||||
The `--depth` flag allows you to restrict the depth of the dependency tree
|
||||
that is generated.
|
||||
|
||||
```bash
|
||||
$ npm ls --depth=0
|
||||
```
|
||||
|
||||
This will produce a list of only the top-level dependencies.
|
||||
|
||||
See `man npm-ls` for more details.
|
||||
Reference in New Issue
Block a user