aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/node-abi/README.md
diff options
context:
space:
mode:
authorpack <pack@packgekko.xyz>2026-08-09 10:54:08 +0000
committerpack <pack@packgekko.xyz>2026-08-09 10:54:08 +0000
commitd3adc16a08d95d6e331de55d7d3bf05a66a874a8 (patch)
treea2dabd199501e67c547c2ce79e1374ca3aa55443 /node_modules/node-abi/README.md
parent55a4f1fc869e41aca748c63d3018f0448b1606e0 (diff)
downloadcrud-d3adc16a08d95d6e331de55d7d3bf05a66a874a8.tar.gz
stop tracking node_modules/
Diffstat (limited to '')
-rw-r--r--node_modules/node-abi/README.md54
1 files changed, 0 insertions, 54 deletions
diff --git a/node_modules/node-abi/README.md b/node_modules/node-abi/README.md
deleted file mode 100644
index 680a0d0..0000000
--- a/node_modules/node-abi/README.md
+++ /dev/null
@@ -1,54 +0,0 @@
-# Node.js ABI
-
-[![Build Status](https://github.com/electron/node-abi/actions/workflows/test.yml/badge.svg)](https://github.com/electron/node-abi/actions/workflows/test.yml)
-[![Auto-update ABI JSON file](https://github.com/electron/node-abi/actions/workflows/update-abi.yml/badge.svg)](https://github.com/electron/node-abi/actions/workflows/update-abi.yml)
-[![Snyk badge](https://snyk.io/test/github/electron/node-abi/badge.svg)](https://snyk.io/test/github/electron/node-abi)
-[![npm version](http://img.shields.io/npm/v/node-abi.svg)](https://npmjs.org/package/node-abi)
-
-Get the Node ABI (application binary interface) for a given target and runtime, and vice versa.
-
-## Installation
-
-```shell
-npm install node-abi
-```
-
-## Usage
-
-```javascript
-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
-
-- https://github.com/lgeiger/electron-abi
-- https://nodejs.org/en/download/releases/
-- https://github.com/nodejs/Release