我正在尝试在 Electron 应用程序中使用Edge.JS。当需要边缘模块时,应用程序会抛出以下错误:
未捕获的错误:找不到指定的过程。\?\C:\myapp\node_modules\edge\lib\native\win32\x64\5.1.0\edge_nativeclr.node
知道这个错误的原因吗?
改用edge-atom-shell
它可以解决所有这些问题
这是我让它与 edge-atom-shell 一起工作的唯一方法:
> npm install --save-dev electron-prebuilt
> npm install edge-atom-shell
> cd node_modules/edge-atom-shell/
> node-gyp配置 --msvs_version=2013
> HOME=~/.electron-gyp node-gyp rebuild --target=0.36.6 --arch=x64 --dist-url= https://atom.io/download/atom-shell
可能晚了,但肯定会在未来帮助一些人,这里的 repo 解决了这种情况: