You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
402 B
15 lines
402 B
# node-api-version
|
|
|
|
Get the maximum Node-API version supported for a specific version of node or Electron.
|
|
|
|
```js
|
|
const { fromNodeVersion, fromElectronVersion } = require("node-api-version");
|
|
|
|
fromNodeVersion("9.0.0"); // undefined
|
|
fromNodeVersion("12.13.0"); // 5
|
|
|
|
fromElectronVersion("2.0.0"); // undefined
|
|
fromElectronVersion("13.0.0"); // 7
|
|
fromElectronVersion("15.0.0-nightly.20210629"); // 8
|
|
```
|