美文网首页
Electron调试主进程

Electron调试主进程

作者: 我就是看看哦 | 来源:发表于2020-03-03 11:25 被阅读0次

1、electron --inspect=5858

"scripts": {
    "start": "electron --inspect=5858 ."
  },

在浏览器输入:chrome://inspect/#devices

image.png

2、添加一个 .vscode/launch.json 文件并使用以下配置:

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Debug Main Process",
      "type": "node",
      "request": "launch",
      "cwd": "${workspaceFolder}",
      "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
      "windows": {
        "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
      },
      "args" : ["."]
    }
  ]
}
image.png

在main.js 加上断点

相关文章

网友评论

      本文标题:Electron调试主进程

      本文链接:https://www.haomeiwen.com/subject/nlhqlhtx.html