
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Sub Zero dependency search.
| Project Info | |
|---|---|
| License: | Apache-2.0 |
| Build: | make |
| Documentation: | https://bucharest-gold.github.io/szero/module-szero.html |
| Issue tracker: | https://github.com/bucharest-gold/szero/issues |
| Engines: | Node.js 4.x, 6.x, 7.x |
npm install szero -g
szero /path_to/project (or use '.' for current directory)
szero .
szero . --ignore (ignore the specified directories. e.g: bower_components,examples)
szero . --file (enable file reporter)
szero . --license (enable license lookup)
szero . --filename <filename> (change the default filename)
szero . --ci (enables process.exit() when unused dependency found)
szero . --dev (enables devDependencies processing)
szero . --summary (enables summary report)
szero . --silent (hides the console output)
szero . --silent (omits the output of information in the console)


The default output is to the console, but you can specify a "reporter" of file to also output the results to a file called szero.txt
szero /path_to/myproject --file
To change the filename that is outputted, use the --filename option.
szero /path_to/myproject --filename output.txt
To use the szero api in code, first install it locally
npm install szero --save
Then require it in your code and call the report method, which returns a Promise:
const szero = require('szero');
szero.report(directory).then((jsonReport) => {
console.log(jsonReport);
});
To have the ouput be in the "file" format, for outputting to a file, just use the fileReport method, which also returns a Promise:
const szero = require('szero');
szero.fileReport(directory).then((fileReport) => {
fs.writeFileSync('szero.txt', fileReport);
});
More information can be found on the docs: https://bucharest-gold.github.io/szero/module-szero.html
Please read the contributing guide
FAQs
Sub Zero dependency search.
The npm package szero receives a total of 41 weekly downloads. As such, szero popularity was classified as not popular.
We found that szero demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.