VSCode 调试器在节点模块文件中意外暂停
Posted
技术标签:
【中文标题】VSCode 调试器在节点模块文件中意外暂停【英文标题】:VSCode Debugger pauses unexpectedly in node modules files 【发布时间】:2018-06-24 21:38:02 【问题描述】:通过 VSCode 调试器运行我的 nodejs 服务器代码时,它会在多个节点模块库文件中奇怪地暂停。然后我只需要按一百次播放按钮就可以最终运行整个代码。这太烦人了。我不知道如何解决它。我什至尝试在 launch.json 文件中跳过节点模块文件和文件夹,但它似乎不起作用。下面是我的 launch.json 文件。
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "$file",
"cwd": "$workspaceRoot",
"skipFiles": [
"$workspaceRoot/node_modules/**/*.js",
"<node_internals>/**/*.js"
]
,
"type": "node",
"request": "attach",
"name": "Attach to Process",
"address": "localhost",
"port": 5858
]
【问题讨论】:
我也有这个问题。只需重新安装即可解决问题。 我使用的是 Mac。我也做了同样的事,但没有结果。 :( 但是好吧!我会再试一次。 为程序明确指定文件名。 【参考方案1】:取消选中它们,它将顺利运行
【讨论】:
你是最棒的!非常感谢你:)以上是关于VSCode 调试器在节点模块文件中意外暂停的主要内容,如果未能解决你的问题,请参考以下文章
在具有活动 virtualenv 的 python 模块上使用 vscode 调试器,launch.json 中的“配置文件中的 python 路径无效”
带有自定义 webpack 构建的 vscode 节点调试器