🐢 🚀 Get the Node.js and Electron ABI for a given target and runtime
Перейти к файлу
David Sanders df3f0015a2
build: fix repository.url in package.json (#184)
2024-09-07 10:43:07 -07:00
.circleci chore: bump electronjs/node in .circleci/config.yml to 2.3.0 (#179) 2024-06-12 10:52:14 -05:00
.github build(deps): bump dsanders11/github-app-commit-action (#183) 2024-09-01 01:02:14 -07:00
scripts
test
.gitignore
.releaserc.json
CONTRIBUTING.md
LICENSE
README.md
abi_registry.json feat: update ABI registry 2024-08-21 02:18:33 +00:00
index.js
package.json build: fix repository.url in package.json (#184) 2024-09-07 10:43:07 -07:00
yarn.lock

README.md

Node.js ABI

Build Status Auto-update ABI JSON file Snyk badge npm version

Get the Node ABI (application binary interface) 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