Node.js ABI
Get the Node ABI for a given target and runtime, and vice versa.
Installation
npm install node-abi
Usage
const nodeAbi = nodeAbi// '51'nodeAbi// '50'nodeAbi// '7.2.0'nodeAbi// '1.4.15' nodeAbiallTargets// [// { 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 }// ]nodeAbideprecatedTargetsnodeAbisupportedTargetsnodeAbiadditionalTargetsnodeAbifutureTargets// ...