Skip to content

本地启动静态文件服务器

Published: at 11:13 PM

Node

很多 Node 包可以启动静态文件服务器。

npx serve

npx http-server

npx live-server

npx static-server

npx node-static

Python

Python 内置了许多好用的模块,其中 http 模块可以用来启动本地开发服务器。

python -m http.server

功能:

缺点:

总结