Demand a Node or npm version to run your app.
Why?
- Fail fast with a friendly message.
- Get semver satisfaction between the expected and actual versions.
- Provide expected versions at runtime or via package.json.
- Provide actual versions at runtime, if you know them already.
Install
npm install engine-test --save
Usage
Get it into your program.
const engineTest = ;
Ask whether the current Node and/or npm in use are acceptable based on the engines
in your package.json.
;
If you want to override the expectations of your package.json, you can.
;
If you happen to already have data on-hand about the user's current engines, you can save time by providing it. This is particularly good for npm, since its version must be determined asynchronously if it is not provided.
;
Ask for a more detailed report.
;
Have Engine Test automatically reject the promise with a nice reason error, allowing you to easily register a handler that will only run when the user has compatible engines. If they don't, they will see a nice stack trace.
engineTest;
Contributing
See our contributing guidelines for more details.
- Fork it.
- Make a feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request.
License
Go make something, dang it.