如何部署Node.js服务并实现无公网ip远程访问本地项目【内网穿透】
要在没有公网IP的情况下远程访问本地Node.js服务,可以使用内网穿透工具,如ngrok、frp、n2n、zerotier等。以下以ngrok为例,演示如何进行设置。
- 前往ngrok官网(https://ngrok.com/),注册并获取账户。
- 下载并安装ngrok。
- 在终端运行
ngrok authtoken <你的认证令牌>
来认证。 - 运行
ngrok http 3000
(假设你的Node.js服务运行在3000端口)。 - ngrok会为你分配一个公网URL,比如
http://randomsubdomain.ngrok.io
。
现在,你可以使用分配的公网URL来远程访问你的本地Node.js服务了。任何远程设备只需要使用这个URL就可以访问你的服务,无需公网IP。
示例代码:
# 安装ngrok(仅限首次运行前)
# npm install -g ngrok
# 认证ngrok
ngrok authtoken <你的认证令牌>
# 启动内网穿透,假设你的Node.js服务运行在3000端口
ngrok http 3000
当你看到类似以下输出时,表示内网穿透成功:
Session Status online
Account ID: <你的ID>
Version: 2.3.35
Region: United States (us)
Web Interface:
http://127.0.0.1:4040
Forwarding:
http://randomsubdomain.ngrok.io -> http://localhost:3000
使用http://randomsubdomain.ngrok.io
就可以从任何远程位置访问你的本地Node.js服务了。
评论已关闭