我有一个本地节点插件,我写了我正在尝试添加到电子应用程序中。我npm install /path/to/addon
用来安装插件。然后electron-rebuild
和electron-build
,不抱怨。
但是当我运行时npm start
,在开发控制台中出现以下错误:
Uncaught Error: No native build was found for platform=win32 arch=x64 runtime=electron abi=75 uv=1 libc=glibc
at Function.load.path (C:\path\to\node_modules\node-gyp-build\index.js:55:9)
at load (C:\path\to\node_modules\node-gyp-build\index.js:20:30)
at Object.<anonymous> (C:\path\to\index.js:2:42)
at Object.<anonymous> (C:\path\to\index.js:27:3)
at Module._compile (internal/modules/cjs/loader.js:880:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:892:10)
at Module.load (internal/modules/cjs/loader.js:735:32)
at Module._load (internal/modules/cjs/loader.js:648:12)
at Module._load (electron/js2c/asar.js:717:26)
at Function.Module._load (electron/js2c/asar.js:717:26)
我在网上找不到太多关于这个错误的信息。我尝试重新编译所有内容,尝试以 Electron 为目标重建插件,但没有任何帮助。为什么会发生此错误,我该如何补救?