ohdear-npm-audit
v1.5.0
Published
Oh Dear Application Health check for npm audit critical vulnerabilities
Maintainers
Readme
ohdear-npm-audit
Oh Dear Application Health check for critical npm vulnerabilities.
Designed for serverless platforms (Vercel, Netlify...) where you can't run npm audit at runtime. Instead, a dependency manifest is generated at build time and checked against the npm advisory API on each health check request.
Disclaimer: This package is not affiliated with or endorsed by Oh Dear. It is a community-built integration that implements the Oh Dear application health check protocol.
Install
npm install ohdear-npm-auditSetup
1. Generate the dependency manifest at build time
Option A — CLI (works with any framework)
"build": "ohdear-deps-manifest --output src/app/api/health/deps-manifest.json && next build"Option B — Next.js config wrapper
// next.config.mjs
import { withOhDearHealth } from "ohdear-npm-audit/next";
export default withOhDearHealth({
// your Next.js config
});The wrapper generates the manifest automatically when the config is evaluated (before the build starts). It also checks for critical vulnerabilities at build time and logs enriched results including dependency chains and vulnerable version ranges:
ohdear-npm-audit: 1 critical vulnerabilities:
- [email protected] (via axios → form-data): unsafe random function
vulnerable: <1.0.1 — https://github.com/advisories/GHSA-xxxwithOhDearHealth(nextConfig, {
output: "src/app/api/health/deps-manifest.json", // default
checkOnBuild: true, // default — set to false to skip the build-time vulnerability check
});2. Create the health check route
// src/app/api/health/route.ts (Next.js App Router)
import { createHealthHandler } from "ohdear-npm-audit";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore — generated at build time by ohdear-npm-audit
import manifest from "./deps-manifest.json" with { type: "json" };
export const GET = createHealthHandler(manifest);Note: The
@ts-ignoreis needed becausedeps-manifest.jsondoes not exist until the first build. Do not use@ts-expect-error— it will fail the build since the file exists at that point.
3. Set the environment variable
OHDEAR_HEALTH_SECRET=your-secret-hereThis must match the secret configured in Oh Dear for your application health check.
4. Add to .gitignore
**/deps-manifest.jsonHow it works
- Build time — The CLI or Next.js wrapper runs
pnpm list/npm lsto extract all production dependencies (including transitive) and writes them to a JSON manifest that includes a reverse dependency map for tracing dependency chains. When using the Next.js wrapper, a build-time vulnerability check is performed and results are logged with the full dependency chain (e.g.axios → form-data) and vulnerable version ranges - Runtime — On each GET request, the handler verifies the Oh Dear secret header, POSTs the manifest to the npm bulk advisory API, filters for critical severity, and returns the result in the Oh Dear health check format. Each vulnerability includes installed versions, vulnerable version range, and the dependency chain
Response format
{
"finishedAt": 1708300000,
"checkResults": [
{
"name": "npm_vulnerabilities",
"label": "NPM Critical Vulnerabilities",
"status": "ok",
"notificationMessage": "No critical npm vulnerabilities found.",
"shortSummary": "0 critical",
"meta": {}
}
]
}When vulnerabilities are found, meta.vulnerabilities contains an array of:
{
"package": "form-data",
"installedVersions": ["1.0.0"],
"title": "form-data uses unsafe random function",
"url": "https://github.com/advisories/GHSA-xxx",
"vulnerableVersions": "<1.0.1",
"dependencyChain": ["axios", "form-data"]
}status is "ok" when there are no critical vulnerabilities, "warning" when the npm advisory API is unreachable, "failed" otherwise.
API
createHealthHandler(manifest, options?)
Returns a (request: Request) => Promise<Response> handler compatible with any framework that uses the Web Request/Response API (Next.js, Hono, SvelteKit...).
| Option | Default | Description |
|--------|---------|-------------|
| secretEnvVar | "OHDEAR_HEALTH_SECRET" | Environment variable name for the secret |
| secretHeader | "oh-dear-health-check-secret" | Request header name for the secret |
withOhDearHealth(nextConfig, options?)
Next.js config wrapper that generates the manifest before the build.
| Option | Default | Description |
|--------|---------|-------------|
| output | "src/app/api/health/deps-manifest.json" | Output path for the manifest |
| checkOnBuild | true | Check for critical vulnerabilities at build time |
CLI ohdear-deps-manifest
ohdear-deps-manifest --output path/to/deps-manifest.jsonDefaults to deps-manifest.json in the current directory. Detects the package manager (pnpm or npm) from the lockfile.
Note: Yarn is not supported. Use pnpm or npm.
Contributing
Architecture
src/
├── types.ts # Shared types (DepsManifest, Vulnerability, HealthCheckResponse)
├── generate.ts # Manifest + reverse dep map generation (build-time, execSync)
├── handler.ts # createHealthHandler factory — main export "."
├── next.ts # withOhDearHealth wrapper — export "./next"
└── bin.ts # CLI entry point — bin "ohdear-deps-manifest"Package manager detection
The manifest generator detects the package manager from the lockfile in the project root:
pnpm-lock.yaml→pnpm list --json --prod --depth Infinity- Otherwise →
npm ls --json --omit=dev --all yarn.lock→ error (not supported)
Building
pnpm install
pnpm buildCJS output. TypeScript compiled with tsc, output in dist/. Compatible with both require() and import.
Credits
Made by Breaking Web.
License
MIT
