express创建的服务器,只能localhost:3000访问,公网ip无法访问,求解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了express创建的服务器,只能localhost:3000访问,公网ip无法访问,求解相关的知识,希望对你有一定的参考价值。
参考技术A 这个地方不是程序员聚集地,这里提问你很难得到有效回答。正题:
const express = require("express") // 引入框架
const app = express() // 实例化
const port = 80 // 指定端口
app.get("/", (req, res) => res.send("hello word"))
app.listen('port','0.0.0.0'); // 指定端口,允许任何网站访问 参考技术B 购买了私有公网IP地址以后才可以访问,或者使用第三方工具来实现,例如花生壳。
以上是关于express创建的服务器,只能localhost:3000访问,公网ip无法访问,求解的主要内容,如果未能解决你的问题,请参考以下文章
Express/Passport 创建会话但不向前端发送 cookie
POST http://localhost:3001/createPost 404 (Not Found) EXPRESS & REACT
为 localhost 创建一个受信任的自签名 SSL 证书(用于 Express/Node)
为localhost创建受信任的自签名SSL证书(用于Express / Node)