哈喽 大家好啊,今天有一个hbuilder的项目
然后由于自己很少用,然后百度到一个博主
在我的h5项目下面
第一步:切换到build文件里面
cd ./build
第二步:全局安装http-server
npm i -g http-server
第三步:启动项目
//3000是端口号 -p 参数是监听端口
http-server -p 3000
启动完成,直接到本地3000端口访问项目即可。
附上http-server的参数
-p 端口号 (默认 8080)
-a IP 地址 (默认 0.0.0.0)
-d 显示目录列表 (默认 'True')
-i 显示 autoIndex (默认 'True')
-e or --ext 如果没有提供默认的文件扩展名(默认 'html')
-s or --silent 禁止日志信息输出
--cors 启用 CORS via the Access-Control-Allow-Origin header
-o 在开始服务后打开浏览器
-c 为 cache-control max-age header 设置Cache time(秒) , e.g. -c10 for 10 seconds (defaults to '3600'). 禁用 caching, 则使用 -c-1.
-U 或 --utc 使用UTC time 格式化log消息
-P or --proxy Proxies all requests which can't be resolved locally to the given url. e.g.: -P http://someurl.com
-S or --ssl 启用 https
-C or --cert ssl cert 文件路径 (default: cert.pem)
-K or --key Path to ssl key file (default: key.pem).
-r or --robots Provide a /robots.txt (whose content defaults to 'User-agent: *\nDisallow: /')
-h or --help 打印以上列表并退出
然后访问就可以啦
然后就是hbuilder的使用
以下截图来自官网:
原文链接:https://www.jianshu.com/p/54b0901cb9cd