我在PC上安装了Node.js服务器,但无法从其他设备连接到服务器,我该怎么办?

2eafrhcq  于 2023-05-22  发布在  Node.js
关注(0)|答案(1)|浏览(221)
const http = require('http');

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('hello\n');
});

const port = 3000;
server.listen(port, () => {
  console.log(`Sunucu çalışıyor: http://localhost:${port}`);
});

(node.js)当我在我的电脑上使用Google进行尝试时,屏幕上会出现“你好”的消息,但在我的手机上,它会显示“无法访问此网站”。为什么会发生这种情况,如果您没有时间回答,我可以在哪里了解更多信息?

2exbekwf

2exbekwf1#

首先,服务器只能从您的本地网络访问,但是,有几种方法可以让任何人都可以访问它,例如您可以使用ngrok下载它注册,并从CMD启动隧道

相关问题