node-compat-checker
v1.0.3
Published
Check if your dependencies and devDependencies are compatible with a future Node.js version
Maintainers
Readme
Node Compat Checker
Check if your dependencies and devDependencies are compatible with a specific Node.js version.
Installation
You can run it directly with npx:
npx node-compat-checker <node-version> [--latest]Or install globally:
npm install -g node-compat-checker
node-compat-checker <node-version> [--latest]Check installed versions:
node-compat-checker 22Check latest published versions:
node-compat-checker 22 --latestAdd assumptions
.node-compat-checker.json
{
"assumedCompatible": [
"^@types/",
"^eslint",
"^prettier",
"^husky$"
]
}Output
⚠️ Incompatible packages – may not work with the target Node version.
ℹ️ Manual review suggested – no engines info; check npm/GitHub manually.
✅ Compatible packages – known compatible or assumed compatible (dev tools/types).
Dependencies and devDependencies are displayed separately.
License
MIT
