一般要建置 web server 都是用 apache 或 nginx,不過開發程式有時只是要簡單測試個網頁而已, NodeJS 有套件可以滿足這個需求,簡單寫個筆記
http-server
今天要用的套件為 http-server
安裝指令
npm install http-server
目前電腦有個 html 檔,路徑在 c:\13f\2021Q4\buffett.html,我需要在 web server 下看到它,只需要執行執行
http-server c:\13f\2021Q4
預設 port 是 8080,但如果 8080 已經被使用過的話,會自動幫你找可以用的 port,像下圖就是使用 8082
這個只要在瀏覽器打上 http://localhost:8082/buffett.html 就能看到這個網頁了