跳至主要内容

如何用 NodeJS 快速啟動 web server

· 1 分鐘閱讀
Eric Cheng

一般要建置 web server 都是用 apache 或 nginx,不過開發程式有時只是要簡單測試個網頁而已, NodeJS 有套件可以滿足這個需求,簡單寫個筆記

http-server

今天要用的套件為 http-server

Github

安裝指令

npm install http-server

目前電腦有個 html 檔,路徑在 c:\13f\2021Q4\buffett.html,我需要在 web server 下看到它,只需要執行執行

http-server c:\13f\2021Q4

預設 port 是 8080,但如果 8080 已經被使用過的話,會自動幫你找可以用的 port,像下圖就是使用 8082

http-server exec

這個只要在瀏覽器打上 http://localhost:8082/buffett.html 就能看到這個網頁了



版權聲明

,轉載請註明出處
本文連結: https://tech.havocfuture.tw/blog/node-http-server



這是 google 廣告