您现在的位置是:首页 > 技术教程 正文

前端简单易操作的内网穿透工具localtunnel

admin 阅读: 2024-03-30
后台-插件-广告管理-内容页头部广告(手机)

1.localtunnel介绍

生成唯一可在公网访问的url,该url会代理本地运行的web服务请求,localtunnel是部署在国外的,访问比较慢。
优势:部署方便,不需要部署测试环境,为了方便向世界暴露你的项目,而且修改起来也是很方便。

2.使用方法

快速开始

npx localtunnel --port 8000
  • 1

全局安装

npm install -g localtunnel
  • 1

或者

yarn global add localtunnel
  • 1

当全局安装了 localchannel 时,只需使用 lt 命令启动即可。

lt --port 8000
  • 1

自定义个性前缀

lt --subdomain <个性前缀> --port <要映射的端口>
  • 1

例如:

在这里插入图片描述

在代码中使用

const localtunnel = require('localtunnel'); (async () => { const tunnel = await localtunnel({ port: 3000 }); // the assigned public url for your tunnel // i.e. https://abcdefgjhij.localtunnel.me tunnel.url; tunnel.on('close', () => { // tunnels are closed }); })();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索