在尝试在Electron应用程序中使用zeromq.js时,我发现NODE_MODULE_VERSIONS似乎不匹配:
Uncaught Error: Cannot open /home/XXXX/ptt_geo/ptt-geo-fork/src/webapp/node_modules/zeromq/build/Release/zmq.node: Error: The module '/home/XXXX/ptt_geo/ptt-geo-fork/src/webapp/node_modules/zeromq/build/Release/zmq.node'
was compiled against a different Node.js version using
NODE_MODULE_VERSION 64. This version of Node.js requires
NODE_MODULE_VERSION 69. Please try re-compiling or re-installing
the module (for instance, using `npm rebuild` or `npm install`).
at Object.<anonymous> (vendor.js:217837)
at Object../node_modules/zeromq/build/Release/zmq.node (vendor.js:217838)
at __webpack_require__ (runtime.js:79)
at Object../node_modules/zeromq/lib/index.js (vendor.js:217866)
at __webpack_require__ (runtime.js:79)
at Object../node_modules/zeromq/index.js (vendor.js:217850)
at __webpack_require__ (runtime.js:79)
at Object../src/app/services/aic-contact-listener.service.ts (main.js:4042)
at __webpack_require__ (runtime.js:79)
at Object../src/app/components/map/map.component.ts (main.js:1874)
根据互联网,我需要使用以下命令来重建zeromq.js:
npm rebuild zeromq --runtime=electron --target=<ELECTRON_VERSION>
因此,我将其用于电子版本(4.1.4),并在重建时遇到以下错误:
gyp WARN install got an error, rolling back install
gyp ERR! configure error
gyp ERR! stack Error: 404 response downloading https://nodejs.org/dist/v4.1.4/node-v4.1.4-headers.tar.gz
gyp ERR! stack at Request.<anonymous> (/usr/lib/node_modules/npm/node_modules/node-gyp/lib/install.js:214:14)
gyp ERR! stack at Request.emit (events.js:194:15)
gyp ERR! stack at Request.onRequestResponse (/usr/lib/node_modules/npm/node_modules/request/request.js:1066:10)
gyp ERR! stack at ClientRequest.emit (events.js:189:13)
gyp ERR! stack at HTTPParser.parserOnIncomingClient [as onIncoming] (_http_client.js:556:21)
gyp ERR! stack at HTTPParser.parserOnHeadersComplete (_http_common.js:109:17)
gyp ERR! stack at TLSSocket.socketOnData (_http_client.js:442:20)
gyp ERR! stack at TLSSocket.emit (events.js:189:13)
gyp ERR! stack at addChunk (_stream_readable.js:284:12)
gyp ERR! stack at readableAddChunk (_stream_readable.js:265:11)
gyp ERR! System Linux 3.10.0-693.el7.x86_64
gyp ERR! command "/usr/local/lib/nodejs/node-v10.15.3-linux-x64/bin/node" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /home/XXXX/ptt_geo/ptt-geo-fork/src/webapp/node_modules/zeromq
gyp ERR! node -v v10.15.3
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! zeromq@5.1.0 install: `node scripts/prebuild-install.js || (node scripts/preinstall.js && node-gyp rebuild)`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the zeromq@5.1.0 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
此错误是在gcc成功构建库文件之后发生的,似乎表明它正在尝试获取4.1.4版(不存在)的node.js标头。
在引擎盖下,电子重建材料使用了node-abi,所以我更深入地进行了一些实验,无论我在运行时传递电子时,node-abi都试图使用以目标为节点,确定要抓取的是什么标头,而不是电子。例如,可以通过
对此进行验证npm rebuild --zeromq --runtime=electron --target=5.0.0
这将成功重建,并应指示使用电子5.0进行构建,其NODE_MODULE_VERSION为70,但是如果我再次构建并查看电子错误,则得到的NODE_MODULE_VERSION为47(相对于所需的69),对应到5.0.0的node.js版本!
我已经多次验证了这一点,因为当我传递与现有node.js版本匹配的目标时,我在电子错误中返回了匹配的NODE_MODULE_VERSION。因此,以为文档可能是错误的,并且该目标实际上应该是node.js版本而不是Electron版本,因此我打入了与Electron构建相关的node.js版本:
npm rebuild zeromq --runtime=electron --target=10.11.0
只有让node-abi回来并说“我不明白:”
Error: Could not detect abi for version 10.11.0 and runtime electron. Updating "node-abi" might help solve this issue if it is a new release of electron
at getAbi (/home/XXXX/ptt_geo/ptt-geo-fork/src/webapp/node_modules/node-abi/index.js:30:9)
at module.exports (/home/XXXX/ptt_geo/ptt-geo-fork/src/webapp/node_modules/prebuild-install/rc.js:71:57)
at Object.<anonymous> (/home/XXXX/ptt_geo/ptt-geo-fork/src/webapp/node_modules/prebuild-install/bin.js:9:25)
at Module._compile (internal/modules/cjs/loader.js:701:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:712:10)
at Module.load (internal/modules/cjs/loader.js:600:32)
at tryModuleLoad (internal/modules/cjs/loader.js:539:12)
at Function.Module._load (internal/modules/cjs/loader.js:531:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:754:12)
at startup (internal/bootstrap/node.js:283:19)
这与我在node-abi的index.js中看到的内容相匹配(其中没有任何内容可以告诉它如何处理10.11.0版的节点)
这是某种错误吗?如果是,是否有建议的解决方法?
使用的软件版本:
电子:4.1.4
Zeromq:5.1.0
节点:10.11.0
Node-abi:2.8.0(今天发布了,是吗??)
答案 0 :(得分:0)
我今天刚刚在Electron 6上遇到了这个问题。npm rebuild zeromq
并没有帮助,因为它首先从其github下载了二进制文件,并且这些二进制文件似乎使用了错误的版本进行编译。
对于有相同问题的任何人,这是我手动重建的方法:
cd node_modules/zeromq/
HOME=~/.electron-gyp node-gyp rebuild --target=6.0.0 --arch=x64 --dist-url=https://electronjs.org/headers