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

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

若是你不想重複的寫 nodeJs 的 web-server.js, 則可使用這個.node

安裝 (全局安裝加 -g) : web

 npm install http-server 

 

Windows 下使用:npm

在站點目錄下開啓命令行輸入json

 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",
 }

 

參數 :cors

-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 serveride

相關文章
相關標籤/搜索