Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sentinel-check) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
sentinel-check
Thin npm wrapper for the
sentinelCLI published from the sentinel-npm repository.
Run Sentinel with npx, no manual binary setup required.
Quick start
Run directly with npx
# audit only
npx -y -p sentinel-check check
# validate lockfile then install dependencies
npx -y -p sentinel-check ci
# install one package with verification
npx -y -p sentinel-check install lodash@4.17.21Add to package.json scripts (recommended)
{
"scripts": {
"sentinel:check": "npx -y -p sentinel-check check",
"sentinel:ci": "npx -y -p sentinel-check ci"
}
}npm run sentinel:check
npm run sentinel:ciNeed package install with verification? Run it directly:
npx -y -p sentinel-check install express@4.21.2CI usage
GitHub Actions:
- name: Verify dependency integrity
run: npx -y -p sentinel-check ciNotes
- The wrapper downloads the matching Sentinel release binary on first use.
- Downloaded binaries are cached locally.
- Integrity is verified using release checksums before execution.
Useful environment variables
| Variable | Description |
|---|---|
SENTINEL_BIN |
Use an existing local sentinel binary |
SENTINEL_VERSION |
Pin a specific Sentinel version |
SENTINEL_SKIP_DOWNLOAD=1 |
Disable automatic binary download |
See the main README for full CLI usage and binary installation options.