Node.js 版本与 ABI 版本对照表
因为下载 node-sass 的 binding.node
预编译二进制包时,发现网上竟然搜不到 Node.js 版本与 ABI 版本的对应关系,所以自己整理一份吧,数据来自三个地方,我做了整合:
- https://github.com/sass/node-sass/blob/master/lib/extensions.js
- https://github.com/electron/node-abi/blob/main/abi_registry.json
- https://github.com/electron/node-abi/blob/main/index.js
ABI | Runtime | Target |
---|---|---|
1 | Node | 0.2.0 |
0x000A | Node | 0.9.1 |
0x000B | Node | 0.9.9 |
11 | Node | 0.10.4 |
11 | Node | 0.10.x |
0x000C | Node | 0.11.0 |
13 | Node | 0.11.8 |
14 | Node | 0.11.11 |
14 | Node | 0.12.x |
42 | Node | 1.0.0 |
42 | io.js | 1.x |
43 | Node | 1.1.0 |
43 | io.js | 1.1.x |
44 | Electron | 0.30.0 |
44 | Node | 2.0.0 |
44 | io.js | 2.x |
45 | Electron | 0.31.0 |
45 | Node | 3.0.0 |
45 | io.js | 3.x |
46 | Electron | 0.33.0 |
46 | Node | 4.0.0 |
46 | Node.js | 4.x |
47 | node-webkit | 0.13.0 |
47 | Electron | 0.36.0 |
47 | Node | 5.0.0 |
47 | Node.js | 5.x |
48 | node-webkit | 0.15.0 |
48 | Electron | 1.1.0 |
48 | Node | 6.0.0 |
48 | Node.js | 6.x |
49 | Electron | 1.3.0 |
49 | Electron | 1.3.x |
50 | Electron | 1.4.0 |
50 | Electron | 1.4.x |
51 | node-webkit | 0.18.3 |
51 | Electron | 1.5.0 |
51 | Node | 7.0.0 |
51 | Node.js | 7.x |
53 | Electron | 1.6.0 |
53 | Electron | 1.6.x |
54 | Electron | 1.7.0 |
57 | node-webkit | 0.23.0 |
57 | Electron | 1.8.0 |
57 | Electron | 2.0.0 |
57 | Node | 8.0.0 |
57 | Node.js | 8.x |
59 | node-webkit | 0.26.5 |
59 | Node | 9.0.0 |
59 | Node.js | 9.x |
64 | Node | 10.0.0 |
64 | Node.js | 10.x |
64 | Electron | 3.0.0 |
64 | Electron | 4.0.0 |
67 | Node | 11.0.0 |
67 | Node.js | 11.x |
69 | Electron | 4.0.4 |
70 | Electron | 5.0.0-beta.9 |
72 | Node | 12.0.0 |
72 | Node.js | 12.x |
73 | Electron | 6.0.0-beta.1 |
75 | Electron | 7.0.0-beta.1 |
76 | Electron | 8.0.0-beta.1 |
76 | Electron | 9.0.0-beta.1 |
79 | Node | 13.0.0 |
79 | Node.js | 13.x |
80 | Electron | 9.0.0-beta.2 |
82 | Electron | 10.0.0-beta.1 |
82 | Electron | 11.0.0-beta.1 |
83 | Node | 14.0.0 |
83 | Node.js | 14.x |
85 | Electron | 11.0.0-beta.11 |
87 | Electron | 12.0.0-beta.1 |
88 | Node | 15.0.0 |
88 | Node.js | 15.x |
89 | Electron | 13.0.0-beta.2 |
89 | Electron | 14.0.0-beta.1 |
89 | Electron | 15.0.0-alpha.1 |
93 | Node | 16.0.0 |
93 | Node.js | 16.x |
97 | Electron | 14.0.2 |
98 | Electron | 15.0.0-beta.7 |
99 | Electron | 16.0.0-alpha.1 |
101 | Electron | 17.0.0-alpha.1 |
102 | Node | 17.0.0 |
102 | Node.js | 17.x |
103 | Electron | 18.0.0-alpha.1 |
106 | Electron | 19.0.0-alpha.1 |
107 | Electron | 20.0.0-alpha.1 |
108 | Node | 18.0.0 |
108 | Node.js | 18.x |
109 | Electron | 21.0.0-alpha.1 |
110 | Electron | 22.0.0-alpha.1 |
111 | Node | 19.0.0 |
111 | Node.js | 19.x |
113 | Electron | 23.0.0-alpha.1 |
114 | Electron | 24.0.0-alpha.1 |
115 | Node | 20.0.0 |
115 | Node.js | 20.x |
116 | Electron | 25.0.0-alpha.1 |
116 | Electron | 26.0.0-alpha.1 |
118 | Electron | 27.0.0-alpha.1 |
119 | Electron | 28.0.0-alpha.1 |
120 | Node | 21.0.0 |
121 | Electron | 29.0.0-alpha.1 |
123 | Electron | 30.0.0-alpha.1 |
123 | Electron | 31.0.0-alpha.1 |
125 | Electron | 31.0.0-beta.7 |
127 | Node | 22.0.0 |
128 | Electron | 32.0.0-alpha.1 |
129 | Node | 23.0.0 |
130 | Electron | 33.0.0-alpha.1 |
Node.js 版本与 ABI 版本对照表