6
points
EN

Check dependencies in your node module.
Depcheck is a tool for analyzing the dependencies in a project to see: how each dependency is used, which dependencies are useless, and which dependencies are missing from package.json.
GitHub: https://github.com/depcheck/depcheck
Simple steps:
- install tool with:
npm install -g depcheck - go to project directory
- print dependency report with command:
depcheck
0 comments
Show comments
Add comment