1. 程式人生 > >HTTP伺服器http-server

HTTP伺服器http-server

http-server is a simple, zero-configuration command-line http server. It is powerful enough for production usage, but it’s simple and hackable enough to be used for testing, local development, and learning.

1.安裝

npm install http-server -g

2.使用

http-server [path] [options]

[path] defaults to ./public if the folder exists, and ./ otherwise.

3.引數[options]

  • -p 要使用的埠(預設為8080)

  • -a 要使用的地址(預設為0.0.0.0)

  • -d 顯示目錄列表(預設為“True”)

  • -i 顯示autoIndex(預設為“True”)

  • -g或–gzip啟用時(預設為“False”),它將用於./public/some-file.js.gz代替./public/some-file.jsgzip壓縮版本的檔案,並且該請求接受gzip編碼。

  • -e或–ext預設副檔名(如果沒有提供)(預設為’html’)

  • -s或–silent從輸出中抑制日誌訊息

  • –cors通過Access-Control-Allow-Origin標題啟用CORS

  • -o 啟動伺服器後開啟瀏覽器視窗

  • -c設定快取控制max-age頭的快取時間(以秒為單位),例如-c10 10秒(預設為’3600’)。要禁用快取,請使用-c-1。

  • -U或–utc在日誌訊息中使用UTC時間格式。

  • -P或–proxy代理無法在本地解決給定網址的所有請求。例如:-P http://someurl.com

  • -S或–ssl啟用https。

  • -C或–certssl證書檔案的路徑(預設值:cert.pem)。

  • -K或–keyssl金鑰檔案的路徑(預設值:key.pem)。

  • -r或者–robots提供一個/robots.txt(其內容預設為’User-agent:* \ nDisallow:/’)

  • -h或–help列印此列表並退出。