尝试开始设置基本服务器。这是我的代码:
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('this is fubar');
})
app.listen(3000, '0.0.0.0', () => console.log(`listening on port 3000`));
当我运行node server.js
时,会记录listening on port 3000
。
但是当我访问https://localhost/3000
时,收到消息“无法访问此站点。Localhost拒绝连接。”
我跑了netstat -ab | findstr :3000
,但没有结果。我也尝试使用端口5000和80。我还能做什么?
使用Windows 10。
答案 0 :(得分:2)
您提到了https://localhost/3000
。一个问题是它应该是https://localhost:3000
(:
而不是/
),另一个问题是您可能打算在本地主机上使用http
。试试:http://localhost:3000