# runtime-engine-check

> Fast runtime validation of `engines.node` specified in package.json

Latest version **1.0.0** (published 2017-03-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install runtime-engine-check
pnpm add runtime-engine-check
yarn add runtime-engine-check
bun add runtime-engine-check
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-03-12 |
| First published | 2017-03-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Shishir Ramam |
| Maintainers | sramam |
| Keywords | node, engines, engine, validate, validation, run-time, version, check, verify, satisfies |

## Links

- npm: https://www.npmjs.com/package/runtime-engine-check
- Repository: https://github.com/sramam/runtime-engine-check
- Homepage: https://github.com/sramam/runtime-engine-check#readme
- Issues: https://github.com/sramam/runtime-engine-check/issues
- npm.io page: https://npm.io/package/runtime-engine-check

## Dependencies (2)

- [semver](https://npm.io/package/semver.md) ^5.3.0
- [read-pkg-up](https://npm.io/package/read-pkg-up.md) ^2.0.0

## Alternatives

- [@regle/core](https://npm.io/package/@regle/core.md) — 47.0K weekly downloads
- [typeof-arguments](https://npm.io/package/typeof-arguments.md) — 12.5K weekly downloads
- [@lokalise/projects-engine-contracts](https://npm.io/package/@lokalise/projects-engine-contracts.md) — 978 weekly downloads
- [@osjwnpm/nam-laboriosam-quibusdam](https://npm.io/package/@osjwnpm/nam-laboriosam-quibusdam.md) — 70 weekly downloads
- [@oridune/validator](https://npm.io/package/@oridune/validator.md) — 16 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2017-03-12

## README

# runtime-engine-check [![Build Status](https://travis-ci.org/sramam/runtime-engine-check.svg?branch=master)](https://travis-ci.org/sramam/runtime-engine-check)

> Validate process.version against package.json:engines.node


## Why
This is a simpler check than [check engines](https://www.npmjs.com/package/check-engines), making it much faster.

## Install

```
$ npm install --save runtime-engine-check
```

## Usage

```json
// in package.json
{
  ...
  "engines": {
    "node": ">=6.0.0"
  },
  ...
}
```
```js
require('runtime-engine-check')();
```
or
```js
import * as runtimeCheck from 'runtime-engine-check';
runtimeCheck();
```

## License

Apache-2.0

---
_Source: https://npm.io/package/runtime-engine-check · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
