Run locally before you push
npm install -g cve-lite-cli
cve-lite /path/to/project --verbose
JavaScript/TypeScript Dependency Scanner — An OWASP Foundation Project
Most security tools are built around pipelines, not developers. CVE Lite CLI scans your lockfile locally in seconds, explains the dependency path, and tells you what to update before you push.

npm install -g cve-lite-cli
cve-lite /path/to/project --verbose
Scans your lockfile on your machine. No hosted account or cloud dashboard required.
Prioritizes copy-and-run commands instead of leaving you with raw CVE IDs.
Run a scan, apply the suggested command, rescan immediately, and keep moving without waiting on CI.
Parent-aware remediation
Transitive CVEs are easy to mishandle. CVE Lite CLI avoids recommending direct installs for packages that are only present transitively and points at the parent package instead.
npm install vulnerable-child@fixed
npm update parent-package
npm install parent-package@target
For npm lockfiles, the CLI checks whether a known non-vulnerable child can be resolved inside the current parent range first.
Workspace-local package context is preserved so hoisted npm packages can still map back to their logical parent chain.
Read the remediation strategy to see when the CLI recommends direct upgrades, parent updates, or parent upgrades.
Guides
Learn how CVE Lite CLI builds reports, handles restricted networks, compares with common scanners, and behaves across package-manager lockfiles.
Generate a self-contained dashboard with severity cards, searchable findings, and copy-ready fix commands. Read the guide.
Sync OSV data locally and scan restricted environments without runtime advisory API calls. Read the guide.
See how CVE Lite CLI compares with Dependabot, npm audit, OSV-Scanner, Snyk, and Socket. Compare tools.