A dead-simple local file server with directory listing, CORS support, and live reload. Built for developers who just want to serve files without config.
pip install quickserve# Serve current directory on port 8000
quickserve
# Custom port and directory
quickserve ./dist --port 3000
# Enable CORS for API testing
quickserve --cors
# Watch for changes and auto-reload browser
quickserve --live- π Pretty directory listings with file sizes and icons
- π Live reload via WebSocket injection
- π CORS headers for local API development
- π Restricts to localhost by default
- π¦ Single file, zero config
MIT