如何使用VS Code调试器调试Azure Functions核心工具?

时间:2019-01-08 09:24:06

标签: node.js azure azure-functions azure-functions-core-tools

我正在使用Azure Functions核心工具在本地开发Node.js应用程序。我想借助VS Code调试器对其进行调试,但出现此错误:

Cannot connect to runtime process, timeout after 10000 ms - (reason: 
Cannot connect to the target: connect ECONNREFUSED 127.0.0.1:5858)

对于调试选项,我选择了“附加到JavaScript函数”。默认情况下该选项在那里,但我还没有创建它。

这是我的launch.json的内容:

{
  "version": "0.2.0",
  "configurations": [
{
  "name": "Attach to JavaScript Functions",
  "type": "node",
  "request": "attach",
  "port": 5858,
  "preLaunchTask": "runFunctionsHost"
}
]} 

如何解决此问题并使调试正常进行?

1 个答案:

答案 0 :(得分:0)

令人惊讶的是,问题已自行解决。所以我关闭了这个问题。