Package Exports
- node-addon-slsa
- node-addon-slsa/advanced
- node-addon-slsa/package.json
Readme
node-addon-slsa
Verifies that an npm package and its prebuilt native addon binary were
produced by the same GitHub Actions workflow run. Uses sigstore for
npm provenance and the Rekor transparency log for binary
verification. Aborts npm install with a SECURITY error if any check
fails.
No authentication required. No GITHUB_TOKEN.
Private repositories: the reusable
publish.yamlworkflow logs repository name, workflow paths, commit SHAs, and run URLs to the public Rekor transparency log. Source code stays private.
Threat model
Trusts GitHub Actions (build environment, attestation authority) and the sigstore public-good instance (Fulcio CA, Rekor). If either is compromised, verification may pass for malicious artifacts.
Protected
| Threat | Mitigation |
|---|---|
| Tampered npm package | sigstore provenance verification |
| Tampered GitHub release | Rekor transparency log + sigstore |
| Mismatched artifacts | Same workflow run check via Run Invocation URI |
| Man-in-the-middle on download | SHA-256 hash verified against signed attestation |
| Path traversal via addon.path | Resolved path must stay within package directory |
Not protected
- Compromised CI workflow — attestations will be valid for malicious code. This tool verifies provenance, not intent.
- Compromised maintainer account — write access to the repository allows producing legitimately attested malicious builds.
- Dependency confusion — verifies a single package, not its transitive dependency tree.
- Version
0.0.0— verification is skipped (local development). Never publish0.0.0to npm.
Setup
1. package.json
{
"name": "my-native-addon",
"version": "1.0.0",
"repository": {
"url": "git+https://github.com/owner/repo.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"addon": {
"path": "./dist/my_addon.node"
},
"scripts": {
"postinstall": "slsa wget",
"pack-addon": "slsa pack"
},
"dependencies": {
"node-addon-slsa": "0.7.1"
}
}addon.path— where the addon is installed (relative to package root).addon.manifest(optional) — path to the generated SLSA manifest inside the published tarball. Defaults to./slsa-manifest.json. The manifest carries each platform/arch binary's download URL, sidecar sigstore bundle URL, and SHA-256; the publish workflow produces it, so do not commit it by hand.postinstall—slsa wgetreads the manifest, downloads the binary for the current platform/arch, and verifies its provenance. Pair withrequireAddon: pnpm ≥ 10 blockspostinstallscripts by default, so consumers may never run this hook.pack-addon—slsa packgzip-compresses the binary for release.repository— github.com URL (HTTPS, SSH, with or without.git). Determines the expected source repository for attestation checks.
2. CI workflow
jobs:
build-addon:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-15, windows-2025]
runs-on: ${{ matrix.os }}
permissions:
contents: write # release upload
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# ... set up toolchain, build native addon ...
- name: Compress binary for release
run: npx slsa pack
- name: Upload binary to release
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
with:
files: dist/my_addon-v*.node.gz
pack-tarball:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# ... set up Node / pnpm, build JS, then:
- run: npm pack
- name: Upload pre-packed tarball
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: my-tarball # any name; passed to publish.yaml below
path: ./*.tgz
if-no-files-found: error
retention-days: 1
publish:
needs: [build-addon, pack-tarball]
uses: vadimpiven/node-addon-slsa/.github/workflows/publish.yaml@<commit-sha>
permissions:
contents: read
id-token: write # sigstore OIDC + npm trusted publishing
attestations: write
with:
tarball-artifact: my-tarball # must match the upload-artifact name
addons: |
{
"linux": { "x64": {
"url": "https://github.com/owner/repo/releases/download/v${{ github.ref_name }}/my_addon-v${{ github.ref_name }}-linux-x64.node.gz",
"bundleUrl": "https://github.com/owner/repo/releases/download/v${{ github.ref_name }}/my_addon-v${{ github.ref_name }}-linux-x64.node.gz.sigstore"
} },
"darwin": { "arm64": {
"url": "https://github.com/owner/repo/releases/download/v${{ github.ref_name }}/my_addon-v${{ github.ref_name }}-darwin-arm64.node.gz",
"bundleUrl": "https://github.com/owner/repo/releases/download/v${{ github.ref_name }}/my_addon-v${{ github.ref_name }}-darwin-arm64.node.gz.sigstore"
} }
}Pin every third-party action to a commit SHA with a trailing # vX.Y.Z
comment, not a mutable tag — SHAs are immutable and audit-friendly.
Each matrix runner produces a platform-specific binary and uploads it
to the GitHub Release at a deterministic URL. The publish.yaml
reusable workflow re-fetches each URL, attests the bytes against
Sigstore/Rekor (signer pinned to this workflow), writes the SLSA
manifest into the tarball, and publishes the npm package via trusted
publishing. At install time slsa wget reads the manifest, picks the
process.platform/process.arch entry, downloads the binary, and
verifies its sidecar sigstore bundle.
3. Loading the addon
import { requireAddon } from "node-addon-slsa";
type MyAddon = { greet(name: string): string };
export const addon = await requireAddon<MyAddon>();Walks up from the caller's file to the enclosing package.json, then
downloads and provenance-verifies the binary if missing. Subsequent
calls are a stat plus require — safe to invoke at module load.
Tdefaults tounknown; supply the addon's type at the call site.- Pass
{ from: import.meta.url }when the caller lives outside the consuming package (e.g. a re-export wrapper). RequireAddonOptionsextendsVerifyOptions; see error handling for failure modes.
API reference
CLI
| Command / Option | Purpose |
|---|---|
slsa wget |
Download, verify, and install the native addon |
slsa pack [output-template] |
Gzip-compress the native addon. Template tokens: {version}/{platform}/{arch} |
--help, -h |
Show usage information |
SLSA_DEBUG=1 |
Debug logging to stderr |
Programmatic API
import { verifyPackage, requireAddon, isProvenanceError } from "node-addon-slsa";
import type {
VerifyPackageOptions,
PackageProvenance,
VerifyOptions,
} from "node-addon-slsa";
// Verify the installed package's manifest attestation via Sigstore/Rekor.
// Returns a handle for verifying individual addon binaries.
const provenance: PackageProvenance = await verifyPackage({
packageName: "my-native-addon",
repo: "owner/repo",
});
// Verify a binary you've already hashed.
await provenance.verifyAddonBySha256(hexHash);
// Or hash-and-verify a file in one call.
await provenance.verifyAddonFromFile("/path/to/addon.node.gz");
// Runtime loader: verify-on-demand, then require the addon.
// Supply the addon's type as T (defaults to `unknown`).
const addon = await requireAddon<MyAddon>();Options
All options have sensible defaults. Pass only what you need:
await verifyPackage({
packageName: "my-native-addon",
repo: "owner/repo",
// All below are optional:
cwd: process.cwd(), // resolution base; defaults to process.cwd()
refPattern: /^refs\/tags\/v?1\./, // RegExp or exact-match string
timeoutMs: 60_000, // per-request HTTP timeout (default: 30s)
maxBinaryBytes: 256 * 1024 * 1024, // per-binary size cap (default: 256 MiB)
maxBinarySeconds: 300, // per-binary download timeout (default: 300s)
bundleFetchRetryDelays: [2000, 5000, 10000, 15000], // retry ms for sidecar 404s
trustMaterial, // pre-loaded via loadTrustMaterial()
dispatcher, // custom undici Dispatcher
signal, // AbortSignal
});Error handling
ProvenanceError— verification failed (tampered artifact, mismatched provenance, missing/invalid sigstore bundle). Do not retry. Thekindfield is reserved for future fine-grained discrimination; currently"other"covers every failure mode.Error— transient issue (network timeout, service unavailable). Safe to retry.
try {
await provenance.verifyAddonBySha256(sha256);
} catch (err) {
if (isProvenanceError(err)) {
// Security failure — do not use this package version
} else {
// Transient — safe to retry
}
}Advanced: node-addon-slsa/advanced
Heavy callers verifying many packages in one process can preload trust material once and inject a verifier:
import { verifyPackage } from "node-addon-slsa";
import { loadTrustMaterial, createBundleVerifier } from "node-addon-slsa/advanced";
const verifier = createBundleVerifier(await loadTrustMaterial());
for (const name of packages) {
const p = await verifyPackage({ packageName: name, repo: "owner/repo", verifier });
await p.verifyAddonFromFile(`/path/to/${name}/dist/addon.node.gz`);
}Requirements
- Node.js
>=22.12.0 - npm package published via the reusable
vadimpiven/node-addon-slsa/.github/workflows/publish.yamlworkflow (handles both npm provenance and per-addon Rekor attestations)