
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
dependency-auditor
Advanced tools
Fast, lightweight dependency scanner for Node.js projects. Scans local folders or GitHub repos and reports outdated packages. Supports JSON/Markdown output and private repos with tokens.
Fast, lightweight dependency scanner for Node.js projects. Scans local folders or GitHub repos and reports outdated packages. Supports JSON/Markdown output and private repos with tokens.
Repository: mallvirus/dependency-auditor
Global install and run:
npm install -g dependency-auditor
# Show JSON in the terminal
dependency-auditor https://github.com/owner/repo --format json
Local usage:
npm install
npm start # scans current folder
npm run scan -- https://github.com/owner/repo
Include devDependencies or everything (JavaScript):
dependency-auditor https://github.com/owner/repo --dev --format json
dependency-auditor https://github.com/owner/repo --all --format json
Strict mode (flag even when range satisfies latest):
dependency-auditor https://github.com/owner/repo --all --strict --format json
Python, Java, Ruby, C#, Go:
# Python only (requirements*.txt / pyproject.toml)
dependency-auditor https://github.com/owner/python-repo --lang py --format json
# Java only (pom.xml / Gradle)
dependency-auditor https://github.com/owner/java-repo --lang java --format json
# Ruby only (Gemfile)
dependency-auditor https://github.com/owner/ruby-repo --lang rb --format json
# C# only (.csproj)
dependency-auditor https://github.com/owner/csharp-repo --lang cs --format json
# Go only (go.mod)
dependency-auditor https://github.com/owner/go-repo --lang go --format json
Programmatic:
const { runCli } = require('./src/index');
(async () => {
await runCli(['https://github.com/owner/repo', '--all', '--format', 'json', '--out', './outdated.json']);
})();
package.json from local path or GitHub URLdependencies, devDependencies, peerDependencies, optionalDependencies--format json), Markdown (--format md)GITHUB_TOKEN or GH_TOKENdep-scan <path-or-github-url> [--lang auto|js|py|java] [--dev] [--peer] [--optional] [--all] \
[--strict] [--format console|json|md] [--out path]
--dev: include devDependencies--peer: include peerDependencies--optional: include optionalDependencies--all: include all sections--strict: mark as outdated unless exactly equal to latest--format: output type (default: console)--out: output file for json/md--lang: choose which ecosystems to scan (default: auto)Examples:
# Console, include dev deps
npm run scan -- . --dev
# All sections, JSON report
npm run scan -- . --all --format json --out ./outdated.json
# Markdown report for a GitHub repo
npm run scan -- https://github.com/owner/repo --format md --out ./report.md
Public GitHub:
npm run scan -- https://github.com/owner/repo
Private GitHub (set a token first):
export GITHUB_TOKEN=YOUR_TOKEN # or: export GH_TOKEN=YOUR_TOKEN
npm run scan -- https://github.com/owner/private-repo
Local folder:
npm run scan -- /absolute/path/to/repo
Tip: If globally linked/published:
dep-scan <path-or-github-url>
# or
npx dep-scan <path-or-github-url>
package.jsonMIT
FAQs
Fast, lightweight dependency scanner for Node.js projects. Scans local folders or GitHub repos and reports outdated packages. Supports JSON/Markdown output and private repos with tokens.
We found that dependency-auditor demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.