Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chriszarate/know-your-deps
Picks a random dependency from your project and splains it to you.
https://github.com/chriszarate/know-your-deps
npm security vulnerabilities
Last synced: 21 days ago
JSON representation
Picks a random dependency from your project and splains it to you.
- Host: GitHub
- URL: https://github.com/chriszarate/know-your-deps
- Owner: chriszarate
- Created: 2019-01-24T03:04:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-25T02:47:42.000Z (over 5 years ago)
- Last Synced: 2024-04-26T01:21:20.143Z (7 months ago)
- Topics: npm, security, vulnerabilities
- Language: JavaScript
- Size: 26.4 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Know Your Dependencies!
This is a command-line NPM module that picks a random dependency from your
project and gives you some info about it.You probably have a lot of dependencies that you've never heard of and you have
absolutely no idea what they do. Is that a good thing? Probably not.
[That's the whole point of this.][blog-post]```sh
cd my-hot-shit-js-project
npx know-your-deps
```It looks for a `package-lock.json` in the folder you run it in.
## But I use Yarn.
Well, aren't you fancy.
```sh
yarn global add know-your-deps
cd my-hot-shit-js-project
know-your-deps
```Thanks to [Hal][hal] for the PR.
[blog-post]: https://chris.zarate.org/know-your-dependencies
[hal]: https://hal.codes/