我已成功在VSCode内运行服务器,但没有显示我使用npm start
运行服务器时在终端上经常看到的请求和响应日志。希望它们能以某种方式显示在Debug Terminal中。
我的launch.json
:
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Dev",
"program": "${workspaceRoot}/index.js",
"env": {
"PORT": "1337",
...
}
}
]
}
答案 0 :(得分:1)
只有从服务器端node.js代码运行的代码将在VSCode的窗口中显示console.log数据,所有客户端console.log都将在运行的任何浏览器上显示在开发人员工具中。