Node.js localhost:3000 拒绝连接

Node.js localhost:3000 refuses to connect

我是 Node.js 的初学者,我无法连接到 localhost:3000

我在 VS 代码中使用以下代码,在终端中点击“node app.js”,此时终端中没有出现错误。 但是,当我尝试访问 localhost:3000 时,它一直拒绝:“ERR_CONNECTION_REFUSED” 我在互联网上搜索解决方案并尝试通过在安全设置上创建入站规则来打开端口,打开 IIS,改用 127.0.0.1,但仍然被拒绝。有人知道如何解决这个问题吗?

我正在使用 Windows 10


const http = require('http');

var server = http.createServer(
    (request, response)=>{
        response.end('hello');
    }
);

server.listen(3000);

我 运行 它在我的计算机上并且该代码工作正常。我会尝试其他端口,看看它们是否有效。

这是解决方法。您可能尝试在已用端口上启动服务器。

// enter this command in your terminal
lsof -i:3000

// this will output the related PID (process ID). Here: 1382.
node      1382 name   21u  IPv6 blabla      0t0  TCP *:3000 (LISTEN)

// kill the PID in use
kill -9 1382

//relaunch your server
node app.js