1. 程式人生 > >一個簡單的零配置命令列HTTP伺服器 - http-server (nodeJs)

一個簡單的零配置命令列HTTP伺服器 - http-server (nodeJs)

http-server 是一個簡單的零配置命令列HTTP伺服器, 基於 nodeJs.

如果你不想重複的寫 nodeJs 的 web-server.js, 則可以使用這個.

安裝 (全域性安裝加 -g) : 

 npm install http-server 

 

Windows 下使用:

在站點目錄下開啟命令列輸入

 http-server

  

訪問: http://localhost:8080 or http://127.0.0.1:8080 

 

使用於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 在開始服務後開啟瀏覽器
-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 列印以上列表並退出
複製程式碼

 

 引用文件: a simple zero-configuration command-line http server

 

To be a better man.

http-server 是一個簡單的零配置命令列HTTP伺服器, 基於 nodeJs.

如果你不想重複的寫 nodeJs 的 web-server.js, 則可以使用這個.

安裝 (全域性安裝加 -g) : 

 npm install http-server 

 

Windows 下使用:

在站點目錄下開啟命令列輸入

 http-server

  

訪問: http://localhost:8080 or http://127.0.0.1:8080 

 

使用於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 在開始服務後開啟瀏覽器
-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 列印以上列表並退出
複製程式碼

 

 引用文件: a simple zero-configuration command-line http server