向导 - 主进程调试
优质
小牛编辑
186浏览
2023-12-01
使用如下的命令行开关来调试 Electron 的主进程:
--debug-brk=[port]
就像 --debug
一样,但是会在第一行暂停脚本运行。
使用 node-inspector 来调试
1. 确认你已经安装了
3. 安装 的一个修订版
$ npm install git+https://git@github.com/enlight/node-pre-gyp.git#detect-electron-runtime-in-find
4. 为 Electron 重新编译 node-inspector
v8
模块(将 target 参数修改为你的 Electron 的版本号)
你也可以用调试参数来运行 Electron :
6. 使用 Electron 开启 node-inspector 服务
$ ELECTRON_RUN_AS_NODE=true path/to/electron.exe node_modules/node-inspector/bin/inspector.js
7. 加载调试器界面
在 Chrome 中打开