能快速调试页面的 web 服务器
11.18
介绍
有时候需要调试编译打包后的页面,这个时候就需要一个能快速启停的 web 服务器。
常用 web 服务器程序
serve(node)
安装
npm i serve -g
搭建基于 dist 文件夹的服务器
serve dist
python SimpleHTTPServer 模块
启动
python -m SimpleHTTPServer
python3 -m http.server
其它
构建工具自带服务器
webpack-dev-server, parcel
需要较多配置的服务器
nginx, apache
📖