#Debugging an Electron App After reading the official documentation on Electron's website, I was left with a number of questions as to how Electron worked under the surface and how to effectively debug an app. This document describes some techniques on how to debug an Electron app on a Mac...
在windows上调试 | Debugging on Windows (Guides: Development) - Electron 中文开发手册 如果您认为Electron中的崩溃或问题不是由您的JavaScript应用程序引起的,而是由Electron本身引起的,那么调试可能有点棘手,特别是对于不习惯于本机/ C ++调试的开发人员。但是,使用Visual Studio,GitHub托管的Electron Symbol Server...
webstorm开发electron,调试主进程方案 官网教程地址:https://www.electronjs.org/zh/docs/latest/tutorial/debugging-main-process 我只能说官网太看得起人了,整这么简易的教程…… 命令行开关 第一步还是要按要求在我们的package.json里加上端口监听:--inspect=5858 我的命令如下: "builder-start": "nodemon -...
{"name":"Renderer","type":"chrome","request":"attach","port":9222,"//可以在main.js中设置remote-debugging-port,更改默认端口webRoot":"${workspaceFolder}"// 需要指定静态资源对应目录} 3. 生产版本调试 待补充
在windows上调试 | Debugging on Windows (Guides: Development) - Electron 中文开发手册 如果您认为Electron中的崩溃或问题不是由您的JavaScript应用程序引起的,而是由Electron本身引起的,那么调试可能有点棘手,特别是对于不习惯于本机/ C ++调试的开发人员。但是,使用Visual Studio,GitHub托管的Electron Symbol Server...
Debugging Electron in VSCode For details, seehttp://blog.matsu.io/debug-electron-vscode Click into each folder for instructions. Alternative guide:https://github.com/Microsoft/vscode-recipes/tree/master/Electron. License CC0, same aselectron/electron-quick-start....
{"version":"0.2.0","configurations":[{"type":"node","request":"launch","name":"Main","runtimeExecutable":"${workspaceFolder}/node_modules/.bin/electron","runtimeArgs":["--remote-debugging-port=9222","."],"windows":{"runtimeExecutable":"${workspaceFolder}/node_modules/.bin/electron....
安装Windows 10 SDK,版本号为 10.0.20348.0,需要包括 “Debugging Tools for Windows”,如果是通过 vs installer 安装的,可以去 设置 → 应用 → 找到你的 windows software development Kit → 修改 → change → next → 勾选 “Debugging Tools for Windows” 就可以了 ...
在windows上调试 | Debugging on Windows 然后,打开Visual Studio。Electron不是用Visual Studio构建的,因此不包含项目文件 - 但是,您可以打开源代码文件“As File”,这意味着Visual Studio将自行打开它们。您仍然可以设置断点 - Visual Studio会自动发现源代码与附加进程中运行的代码相匹配并相应地中断。
调试主进程 | Debugging the Main Process 电子浏览器窗口中的DevTools只能调试在该窗口中执行的JavaScript(即网页)。要调试在主进程中执行的JavaScript,您需要使用外部调试器并使用 命令行开关 使用以下命令行开关之一启用主进程的调试: --inspect=[port] Electron将监听指定的V8检查器协议消息port,外部调试器将需要...