🐢 🚀 Get the Node.js and Electron ABI for a given target and runtime
Перейти к файлу
Samuel Attard d11b1aad31
fix: support electron 4.0.X
2018-10-02 01:35:18 +10:00
test feat: add support to node-webkit target. (#34) 2018-01-28 17:58:42 +01:00
.gitignore Initial commit 2016-12-03 00:51:21 +01:00
.travis.yml chore: ⬆️ semantic release + update token (#45) 2018-09-29 05:20:59 +02:00
CODE_OF_CONDUCT.md docs: Add code of conduct 2017-09-06 11:33:51 +02:00
CONTRIBUTING.md docs: Add contributing guide 2017-09-06 11:33:51 +02:00
LICENSE Initial commit 2016-12-03 00:51:21 +01:00
README.md feat: add support to node-webkit target. (#34) 2018-01-28 17:58:42 +01:00
index.js fix: support electron 4.0.X 2018-10-02 01:35:18 +10:00
package.json chore: ⬆️ semantic release + update token (#45) 2018-09-29 05:20:59 +02:00

README.md

Node.js ABI

Build Status Greenkeeper badge

Get the Node ABI for a given target and runtime, and vice versa.

Installation

npm install node-abi

Usage

const nodeAbi = require('node-abi')

nodeAbi.getAbi('7.2.0', 'node')
// '51'
nodeAbi.getAbi('1.4.10', 'electron')
// '50'
nodeAbi.getTarget('51', 'node')
// '7.2.0'
nodeAbi.getTarget('50', 'electron')
// '1.4.15'

nodeAbi.allTargets
// [
//  { runtime: 'node', target: '0.10.48', abi: '11', lts: false },
//  { runtime: 'node', target: '0.12.17', abi: '14', lts: false },
//  { runtime: 'node', target: '4.6.1', abi: '46', lts: true },
//  { runtime: 'node', target: '5.12.0', abi: '47', lts: false },
//  { runtime: 'node', target: '6.9.4', abi: '48', lts: true },
//  { runtime: 'node', target: '7.4.0', abi: '51', lts: false },
//  { runtime: 'electron', target: '1.0.2', abi: '47', lts: false },
//  { runtime: 'electron', target: '1.2.8', abi: '48', lts: false },
//  { runtime: 'electron', target: '1.3.13', abi: '49', lts: false },
//  { runtime: 'electron', target: '1.4.15', abi: '50', lts: false }
// ]
nodeAbi.deprecatedTargets
nodeAbi.supportedTargets
nodeAbi.additionalTargets
nodeAbi.futureTargets
// ...

References