我在VS Code
之外启动NodeJSnode --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,
}
我在Windows 7上运行VS Code 0.8.0。节点版本v0.10.33。
我想知道这是VS Code调试器的错误还是本地环境的问题?