靜態 HTTP 服務的幾個用途:html
如下會介紹目前我瞭解的方式中,最推薦的兩種:python
只要你安裝了 Python 就可用了。git
首先 cd
到要公開的目錄,而後執行:github
$ python -m http.server 8000
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...
複製代碼
瀏覽器訪問 http://0.0.0.0:8000/
:npm
須要你安裝 Node.js ,再安裝此 http-server 包:瀏覽器
npm install -g http-server
複製代碼
macOS 上用 Homebrew 也可一步到位:bash
brew install http-server
複製代碼
以後,就多了個 http-server
命令。 cd
到要公開的目錄,執行:spa
$ http-server
Starting up http-server, serving ./
Available on:
http://127.0.0.1:8080
http://192.168.199.99:8080
Hit CTRL-C to stop the server
複製代碼
瀏覽器訪問 http://192.168.199.99:8080
:code
閱讀文檔,可見:cdn
不適用於產品,功能簡單。但系統通常預裝 Python ,利於臨時使用。
閱讀文檔,可見:
適用於產品,功能完整:可支持 https , gzip 等。用這個掛服務出來,比較好點。
Go coding!
分享 Coding 中實用的小技巧、小知識!歡迎關注,共同成長!