将 Visual Studio 调试器附加到电子应用程序

Posted

技术标签:

【中文标题】将 Visual Studio 调试器附加到电子应用程序【英文标题】:Attach visual studio debugger to electron app 【发布时间】:2018-03-12 00:52:28 【问题描述】:

我正在尝试从 Visual Studio 2017(而不是 vscode)从头开始调试电子应用程序。

我创建了一个控制台 nodejs 项目,安装并保存电子。项目结构:

app.js的内容(摘自电子网站):

'use strict';

const  app, BrowserWindow  = require('electron')
const path = require('path')
const url = require('url')

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the javascript object is garbage collected.
let win

function createWindow() 
    // Create the browser window.
    win = new BrowserWindow( width: 800, height: 600 )

    // and load the index.html of the app.
    win.loadURL(url.format(
        pathname: path.join(__dirname, 'index.html'),
        protocol: 'file:',
        slashes: true
    ))

    // Open the DevTools.
    win.webContents.openDevTools()

    // Emitted when the window is closed.
    win.on('closed', () => 
        // Dereference the window object, usually you would store windows
        // in an array if your app supports multi windows, this is the time
        // when you should delete the corresponding element.
        win = null
    )


// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)

// Quit when all windows are closed.
app.on('window-all-closed', () => 
    // On macOS it is common for applications and their menu bar
    // to stay active until the user quits explicitly with Cmd + Q
    if (process.platform !== 'darwin') 
        app.quit()
    
)

app.on('activate', () => 
    // On macOS it's common to re-create a window in the app when the
    // dock icon is clicked and there are no other windows open.
    if (win === null) 
        createWindow()
    
)

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.

还有index.html

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Hello World!</title>
</head>
<body>
    <h1>Hello World!</h1>
    We are using node
    <script>document.write(process.versions.node)</script>,
    Chrome
    <script>document.write(process.versions.chrome)</script>,
    and Electron
    <script>document.write(process.versions.electron)</script>.
</body>
</html>

但是,当我单击开始时,电子应用程序启动,但调试过程似乎自行分离。当我尝试手动将调试器附加到所有电子进程(调试 -> 附加到进程 -> 选择所有电子进程)时,由于没有加载任何符号,因此断点声称不会被命中。

这是项目属性页:

我错过了一个步骤吗?既然可以在VSCode上进行调试,那我假设在VS2017上也可以进行调试?

非常感谢。

注意:我确实选中了 Suppress JIT optimization 并取消选中 Enable only my code。

【问题讨论】:

您是否在调试模式下运行您的应用程序? @Mohamed Chaawa,是的。 这是一个愚蠢的评论,因为作为一名程序员,我假设您知道调试和发布之间的区别?你不是想附加到发布版本是吗?您确实尝试过重建以便更新调试符号? @Aaron。有关系吗?我正在调试一个 js 文件,而不是电子本身的内部。 Electron 在 js 文件上运行。只要我正确指定调试端口,相同的过程似乎可以很好地调试在发布版 Google chrome 上运行的 JavaScript 文件 【参考方案1】: 首先你必须configure your Visual Studio to GitHub Symbols。

Attaching to and Debugging Electron -> 要启动调试会话,请打开 PowerShell/CMD 并执行 Electron 的调试版本,使用打开的应用程序作为参数。

$ ./out/D/electron.exe ~/my-electron-app/

如需完整文档,请阅读here。


要查看符号未加载的原因,请在 Windbg 中键入以下命令。

> !sym noisy
> .reload /f electron.exe

Creating an Electron app using Visual Studio (not VSCode) w/ Node.js tools

【讨论】:

嗯...我通读了一遍,看来这可能有效。但我需要对此进行更多试验才能确认。 我的回答做了一些改动。【参考方案2】:

这其实很容易做到。

    像这样在 Visual Studio 中配置您的应用:

    启动您的应用程序。 Electron 将在一个单独的终端上启动,但 Visual Studio 不会附加到它。

    转到 Debug > Attach to process... 并输入 Webkit websocket 连接类型和 http://127.0.0.1:5858 作为目标。

    您的断点现已启用。

【讨论】:

啊。一直以来,我仍然必须指定连接目标。我认为它是在属性文件中指定的。不错! 我没有得到我期望的结果。调试器连接得很好,我可以打断点,但是电子应用程序窗口没有正确加载:imgur.com/wsAmql9我在项目的属性中尝试了很多选项,但不行。这是 njsproj 文件,以防有人想提供帮助:pastebin.com/qF4uCzBc 谢谢和欢呼! @naphier 请为此发布一个新问题。我没有VS了【参考方案3】:

在“Node.exe 选项”字段中,为 NodeJS v6 及以下版本添加 --debug=$DEBUG_PORT 或为 NodeJS v7 或更高版本添加--inspect=$DEBUG_PORT,其中$DEBUG_PORT 用于表示您在调试配置中指定的端口。

如果你不传递端口而只传递--debug--inspect 标志,那么Node 调试器将分别侦听端口5858 和9229……他们在更高版本的node.js 中将默认端口更改为9229。

如果这有帮助,请告诉我!

【讨论】:

我这样做了,程序似乎中断了,但我无法继续运行,并且断点仍然没有加载。 尝试在 --debug 或 --inspect 标志之后添加主机和端口。例如--inspect=0.0.0.0:9229 电子应用程序中的主机是什么? 如果您在本地计算机上运行它,那么它应该是 localhost...所以尝试:localhost127.0.0.10.0.0.0 抱歉回复晚了,我正在旅行,无法使用我的电脑。会尝试并回复您。

以上是关于将 Visual Studio 调试器附加到电子应用程序的主要内容,如果未能解决你的问题,请参考以下文章

调试期间在 Visual Studio 中自动附加到子进程

无法将 matlab.exe 进程附加到 Visual Studio 2013 以调试 mex 文件?

使用多个引擎将 Visual Studio 2013 附加到托管和 C++ 进程

将Visual Studio 2012附加到在Android移动设备上运行的Unity游戏中,以进行调试

如何将 Visual Studio 附加到尚未启动的进程?

Visual Studio 附加到进程调试