Visual Studio Code中的Launch.json

时间:2016-01-11 23:10:05

标签: debugging visual-studio-code

要在Visual Studio代码中开始调试,我必须生成一个Launch.json文件。 在Visual Studio Code I自动生成文件之后,我得到了类似的结果:

{
"version": "0.2.0",
"configurations": [
    {
        "name": "Launch",
        "type": "node",
        "request": "launch",
        "program": "./bin/www",
        "stopOnEntry": false,
        "args": [],
        "cwd": ".",
        "runtimeExecutable": null,
        "runtimeArgs": [
            "--nolazy"
        ],
        "env": {
            "NODE_ENV": "development"
        },
        "externalConsole": false,
        "sourceMaps": false,
        "outDir": null
    },
    {
        "name": "Attach",
        "type": "node",
        "request": "attach",
        "port": 5858
    }
]

}

在这个文件中,我可以设置参数" request"发起或附加。 "发布"之间有什么区别?并且"附上"?

我认为"启动"只需启动应用程序"附加"负责附加到节点进程。但是我注意到如果我删除整个"附加"块我仍然可以调试我的应用程序。

1 个答案:

答案 0 :(得分:1)

得到了docs的答案: 在VS Code中,我们支持在调试模式下启动您的应用程序或附加到已经运行的应用程序。根据请求(附加或启动),需要不同的属性,我们的launch.json验证和建议应该有所帮助。