Chrome 从 Node.js VS Code 项目启动时,即使没有断点,调试器也会在启动时中断

Chrome debugger breaks at launch even without a breakpoint when started from Node.js VS Code project

每次我启动我的应用程序时,Chrome 调试器立即停止。我没有任何断点。这是一个非常烦人的行为。

我使用 node --inspect-brk 启动我的应用程序并使用 chrome://inspect/ 启动调试器(一次),然后单击打开专用的 Node DevTools。

我遵循了 this 指南,它实际上指出

When we open DevTools, the source code appears in the browser which has loaded while running our application and will be paused at the first line.

我讨厌这个,如何关闭它?

发现了。 --inspect-brk 开关在调试器附加时中断。取而代之的是一个常规的 --inspect 标志。