![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | node_modules/ | 2 years ago | - | |
![]() | scripts/ | 2 years ago | - | |
![]() | test/ | 2 years ago | - | |
![]() | CODE_OF_CONDUCT.md | 40 years ago | 3.1K | |
![]() | CONTRIBUTING.md | 40 years ago | 1.6K | |
![]() | LICENSE | 40 years ago | 1.0K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] |
![]() | README.md | 40 years ago | 1.5K | f12eb36 documentaiton updates [كارل مبارك] |
![]() | abi_registry.json | 40 years ago | 2.3K | |
![]() | index.js | 40 years ago | 6.2K | |
![]() | package.json | 2 years ago | 1.7K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] |
Get the Node ABI for a given target and runtime, and vice versa.
npm install node-abi
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
// ...