设备:Macbook Pro 2016 作业系统:MacOS 10.13.5 编辑器软件:Visual Studio Code
几天前,我安装了VScode,并一直试图在作为VScode一部分的调试器中运行一个简单的hello world程序。我最初遇到的问题是未安装节点,但是在安装节点后,我收到错误消息“无法连接到运行时进程,在10000毫秒后超时-(原因:无法连接到目标:连接ECONNREFUSED 127.0.0.1:9229)。 “
我尝试了其他一些操作,例如:安装“ node exec”和“代码运行器”。
这也是我的Launch.Json的样子
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations":
[
{
"type": "node",
"request": "launch",
"protocol": "auto",
"name": "Launch program",
"port": 9229
},
]
}