不少狀況下,須要在本地開啓http服務器來測試,以前常常要寫一個簡單的 node demo,最近發現'http-server'能夠幫助咱們啓動一個http服務,深深感慨,沒文化,真闊怕!html
1. 安裝:node
安裝經過npm:進行全局安裝npm
npm install http-server -g服務器
2. 使用測試
新建一個demo目錄spa
新建一個 html 文件pwa
<!DOCTYPE> <html> <body>welcome to pwa</body> </html>
打開cmd,移動進入當前文件夾,在當前文件夾內輸入命令便可code
http-server [path] [options]server
3. 效果htm