一般要建置 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 就能看到这个网页了