• 使用 VSCode 进行主进程调试
    • 1.在 VSCode 中打开一个 Electron 项目。
    • 2.添加一个 .vscode/launch.json 文件并使用以下配置:
    • 3. 调试

    使用 VSCode 进行主进程调试

    1.在 VSCode 中打开一个 Electron 项目。

    1. $ git clone git@github.com:electron/electron-quick-start.git
    2. $ code electron-quick-start

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

    1. {
    2. "version": "0.2.0",
    3. "configurations": [
    4. {
    5. "name": "Debug Main Process",
    6. "type": "node",
    7. "request": "launch",
    8. "cwd": "${workspaceRoot}",
    9. "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
    10. "windows": {
    11. "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
    12. },
    13. "args" : ["."],
    14. "outputCapture": "std"
    15. }
    16. ]
    17. }

    3. 调试

    main.js中设置一些断点,并在 Debug 视图 中开始调试。你应该能够捕获断点信息。

    这是一个预先配置的项目,你可以下载并直接在 VSCode中调试: https://github.com/octref/vscode-electron-debug/tree/master/electron-quick-start