如何将我的电子版本从 6 升级到 9 以避免错误

How to upgrade my electron version from 6 to 9 to avoid errors

我想将我的 electron 版本从 6 稳定版升级到 9 因为 我的 api 有问题我已经尝试过 npm fund 和 npm audit 但它没有纠正 问题可能是有人有其他方法可以做到这些是我遇到的错误:

(electron) app.allowRendererProcessReuse 的默认值已弃用,它是 当前为“假”。它将在 Electron 9 中变为“true”。有关更多信息 请检查 https://github.com/electron/electron/issues/18397 node-pre-gyp 信息 此 Node 实例不支持 Node-API 版本 6 的构建 node-pre-gyp 信息 此 Node 实例不支持 Node-API 版本 6 的构建 node-pre-gyp 信息 此 Node 实例不支持 Node-API 版本 6 的构建 node-pre-gyp 信息 此 Node 实例不支持 Node-API 版本 6

的构建

在你的 package.json 文件中(应该在项目的根目录下),将你的 devDependencies Electron 版本行编辑为 "electron": "^9.0.0" 并保存文件。

接下来,在项目的根目录下打开命令行,然后 运行 npm install

有关详细信息,请参阅 Manually editing the package.json file