Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
npm-dep-info
Advanced tools
Generates a glimpse of descriptions for your dependencies in the package.json
Generates a glimpse of descriptions for your dependencies in the package.json
npm install npm-dep-info -g
Have you ever got confused of what your NPM packages do? Sometimes it just can't be told by their names.
Example taken from exorcist's package.json
{
"name": "exorcist",
"dependencies": {
"minimist": "0.0.5",
"mold-source-map": "~0.3.0",
"nave": "~0.5.1"
},
"devDependencies": {
"tap": "~0.4.3",
"browserify": "~3.20.0",
"through2": "~0.4.0"
}
}
With npm-dep-info, you get a nice description of these packages:
{
"dependencies": {
"minimist": "parse argument options",
"mold-source-map": "Mold a source map that is almost perfect for you into one that is.",
"nave": "Virtual Environments for Node"
},
"devDependencies": {
"tap": "A Test-Anything-Protocol library",
"browserify": "browser-side require() the node way",
"through2": "A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise"
}
}
It can generate a Markdown file for you, too.
And a table output:
dependencies
┌─────────────────┬───────────────────────────────────────────────────────┐
│ name │ description │
├─────────────────┼───────────────────────────────────────────────────────┤
│ minimist │ parse argument options │
├─────────────────┼───────────────────────────────────────────────────────┤
│ mold-source-map │ Mold a source map that is almost perfect for you into │
│ │ one that is. │
├─────────────────┼───────────────────────────────────────────────────────┤
│ nave │ Virtual Environments for Node │
└─────────────────┴───────────────────────────────────────────────────────┘
...
Usage:
npm-dep-info [OPTIONS] [ARGS]
Options:
-M, --markdown Output as Markdown
-T, --table Output as table
-I, --include STRING Include extra properties from package.json of the
dependency (e.g. --include version,homepage)
-o, --output PATH Write output to file
-i, --input PATH Location of package.json (default ./)
Output a description from the current directory:
npm-dep-info
npm-dep-info -M # markdown
npm-dep-info -T # table
Output to file:
npm-dep-info -o dependencies.json
npm-dep-info > dependencies.json # pipe
Include extra info
npm-dep-info --include version,homepage # split by ","
FAQs
Generates a glimpse of descriptions for your dependencies in the package.json
The npm package npm-dep-info receives a total of 0 weekly downloads. As such, npm-dep-info popularity was classified as not popular.
We found that npm-dep-info demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.