https://github.com/rdsq/node-deps-cli
CLI to show Node.js dependencies in a fancy way
https://github.com/rdsq/node-deps-cli
cli esperanto-translation node nodejs npm npm-dependencies rust rust-cli
Last synced: 8 months ago
JSON representation
CLI to show Node.js dependencies in a fancy way
- Host: GitHub
- URL: https://github.com/rdsq/node-deps-cli
- Owner: rdsq
- License: mit
- Created: 2025-03-29T18:09:45.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-05-24T17:40:59.000Z (9 months ago)
- Last Synced: 2025-05-29T20:26:36.631Z (9 months ago)
- Topics: cli, esperanto-translation, node, nodejs, npm, npm-dependencies, rust, rust-cli
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `node-deps`
`node-deps` is a small (could also be considered polished) CLI that prints dependencies of a Node.js project in a nice and readable way
# Usage
If you are in a Node project and want to see its dependencies, simply run:
```sh
node-deps
```
And that's all
If you are in another directory, it is also pretty intuitive
```sh
node-deps ./my-node-project
```
Or, in case you need it, you can also do it from a file that is not called `package.json`. It just works
# stdin
It also supports input from stdin, just add the `-` argument
This means, you can integrate it with stuff like `curl` and do
```sh
curl -s -L https://github.com/npm/cli/raw/refs/heads/latest/package.json | node-deps -
```