首先安装 Node.js,我电脑写vue已经有这个了,然后cmd
npm install -g localtunnel
lt --help #查看指令
lt --port 8080 #映射本地8080端口
首先去官网注册自己的账号,然后下载安装。
我的迅雷一直没下载成功,所以使用chocolatey,首先管理员身份运行power shell下载chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
然后安装ngrok并配置,管理员身份运行power shell
choco install ngrok
ngrok config add-authtoken XXX
ngrok http 80
生成的还是https,这里访问时遇到了问题Invalid Host header,可以参考博文:https://blog.csdn.net/i_am_father_for_/article/details/130831142,就是修改了vue的配置文件
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
port: 8080,
//添加下面两个设置
historyApiFallback: true,
allowedHosts: "all",
},
chainWebpack: config =>{
config.plugin('html')
.tap(args => {
args[0].title = "管理系统";
return args;
})
},
})
前两个都不能生成http,搞得头疼,终于找到了可以生成http的。可以参考博文,附上github地址。
先删除ngrok,power shell管理员运行
choco uninstall ngrok
git clone https://github.com/open-dingtalk/pierced.git
cd windows_64
ding -config ding.cfg 8080
算了,这工具下架了,头疼。
终于找到了可以http访问的工具了,不过我用的免费版,网络不稳定。
去cpolar官网注册,然后下载安装。
安装成功后,在浏览器访问:127.0.0.1:9200,即可开启cpolar的用户交互页面。
选择隧道管理-隧道列表,可以看到website的状态是activite状态(默认8080端口,可以自己编辑修改)。
选择状态-在线隧道列表,可以看到自己的本地的website的http和https链接。
成功访问到了本地搭建的服务,如图。