共计 1514 个字符,预计需要花费 4 分钟才能阅读完成。
1. 介绍
http-server 是一个简单的零配置命令行 HTTP 服务器, 基于 Node.js,如果你不想重复的写 nodeJs 的 web-server.js, 则可以使用这个。
2. 安装
npm install -g http-server
安装成功如下:
3. 使用
在站点目录下开启命令行输入
http-server
运行结果如图:
在浏览器输入
http://localhost:8080/
结果如下:
4.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 打印以上列表并退出
下面关于 Node.js 的内容你可能也喜欢:
在 Ubuntu 14.04/15.04 上安装配置 Node.js v4.0.0 http://www.linuxidc.com/Linux/2015-10/123951.htm
如何在 CentOS 7 安装 Node.js http://www.linuxidc.com/Linux/2015-02/113554.htm
Ubuntu 14.04 下搭建 Node.js 开发环境 http://www.linuxidc.com/Linux/2014-12/110983.htm
Ubunru 12.04 下 Node.js 开发环境的安装配置 http://www.linuxidc.com/Linux/2014-05/101418.htm
Node.Js 入门[PDF+ 相关代码] http://www.linuxidc.com/Linux/2013-06/85462.htm
Node.js 开发指南 高清 PDF 中文版 + 源码 http://www.linuxidc.com/Linux/2014-09/106494.htm
Linux 下安装 Node.js 详细完整教程 http://www.linuxidc.com/Linux/2017-01/139726.htm
Ubuntu 16.04 64 位 搭建 Node.js NodeJS 环境 http://www.linuxidc.com/Linux/2016-09/135487.htm
Node.js 的详细介绍:请点这里
Node.js 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-02/141128.htm