http-server的使用

node http-server安装

    • 1. 安装
    • 2. 使用
      • 2.1 http-server参数

前端常使用的http服务器http-server,非常实用。可以做模拟数据,可以做静态资源服务器,也可以做调试、测试的前端服务器,可以不再依赖后端。可可以做代理转发等功能,解决平时开发大部分后端需求。

1. 安装

$ npm install http-server -g

2. 使用

在当前目录下的www启动服务器,端口为9000,启动成功后会打开默认浏览器,地址为:http://localhost:9000

$ http-server './www/' -p 9000 -o

2.1 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 打印以上列表并退出

你可能感兴趣的:(+Frontend,Practices/前端实战)