ワンライナーなHTTPサーバーの建て方
code:sh
# Node.js
npx serve
# Bun
bunx serve
code:sh
# Python3.x系
python3 -m http.server 8000
# SimpleHTTPServer
# 標準の8000ポートで起動
python -m SimpleHTTPServer
# 8080ポートで起動
python -m SimpleHTTPServer 8080
code:sh
# WEBrick
gem install webrick
ruby -r un -e httpd . -p 8000
code:sh
php -S 0.0.0.0:8000
関連