# PHP
php -S 0.0.0.0:8099
# Python2
python -m SimpleHTTPServer 8099
# Python3
python -m http.server 8099
# Node.js
npx http-server --port 8099
- 参考
https://blog.youkuaiyun.com/qq_37138818/article/details/84069269
https://www.cnblogs.com/rookie404/p/6128959.html