http-server 是一个简单的零配置命令行HTTP服务器, 基于 nodeJs.
如果你不想重复的写 nodeJs 的 web-server.js, 则可以使用这个.
安装 (全局安装加 -g) :
npm install http-server
使用 :
在站点目录下开启命令行输入
node http-server
使用于package.json
"scripts": { "start": "http-server -a 0.0.0.0 -p 8000", }
参数 :
-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 在开始服务后打开浏览器 -h or --help 打印列表并退出 -c 为 cache-control max-age header 设置Cache time(秒) , e.g. -c10 for 10 seconds (defaults to ‘3600‘). 禁用 caching, 则使用 -c-1.
Reference Url: a simple zero-configuration command-line http server
时间: 2024-10-05 05:05:29