从 VS Code 附加到 NodeJS 进程会跳过第一条语句
Attach to NodeJS process from VS Code skips first statement
我在 VS Code 之外启动 NodeJS
node --debug-brk main.js
这里是main.js
的代码
console.log('Hello from child');
console.log('Hello from child2');
console.log('Hello from child3');
当我使用 VS Code attach 附加到它时,配置调试器跳过了第一个语句的断点。
{
"name": "Attach to Node",
"type": "node",
"address": "localhost",
"port": 5858,
}
我是 运行 VS Code 0.8.0 on Windows 7. 节点版本 v0.10.33.
我想知道这是 VS Code 调试器的错误还是我本地环境的问题?
这是 VSCode 0.8.0 在 NodeJS 旧版本 (< 0.12.x) 上的问题。从 NodeJS 版本 0.12.0 VSCode 开始,第一行就没有问题了。这将在 VSCode 0.9.0.
中修复
我在 VS Code 之外启动 NodeJS
node --debug-brk main.js
这里是main.js
的代码console.log('Hello from child');
console.log('Hello from child2');
console.log('Hello from child3');
当我使用 VS Code attach 附加到它时,配置调试器跳过了第一个语句的断点。
{
"name": "Attach to Node",
"type": "node",
"address": "localhost",
"port": 5858,
}
我是 运行 VS Code 0.8.0 on Windows 7. 节点版本 v0.10.33.
我想知道这是 VS Code 调试器的错误还是我本地环境的问题?
这是 VSCode 0.8.0 在 NodeJS 旧版本 (< 0.12.x) 上的问题。从 NodeJS 版本 0.12.0 VSCode 开始,第一行就没有问题了。这将在 VSCode 0.9.0.
中修复