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.
郭建 6169a71ac2
first commit
2 years ago
..
README.md first commit 2 years ago
electron-versions.js first commit 2 years ago
index.js first commit 2 years ago
package.json first commit 2 years ago
test.js first commit 2 years ago
types.d.ts first commit 2 years ago

README.md

node-api-version

Get the maximum Node-API version supported for a specific version of node or Electron.

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