Fork me on GitHub

http-server本地服务工具库的使用

文章概述

本篇文章记录http-server本地服务工具库使用的笔记。

http-server

GitHub

简介

http-server是一个简单的零配置命令行HTTP服务器, 基于 nodeJs。只需http-server命令即可启动基于当前文件夹的一个http服务器,可被外部访问。

安装

全局安装:

1
$ npm install http-server -g

使用

切换到指定目录,输入以下命令即可通过localhost:8080地址访问目录下的文件:

1
$ http-server

应用到package.json

在package.json文件中配置如下:

1
2
3
4
5
6
{ 
//...
"scripts": {
"start": "http-server -a 0.0.0.0 -p 8000",
}
}

【参数说明】

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-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 打印以上列表并退出
坚持原创技术分享,您的支持将鼓励我继续创作!