static-web-server — fast asynchronous static file server (Rust)
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-1c5fe6ea)More formats (shields.io, HTML) on the badges page.
---
name: static-web-server
description: static-web-server — fast asynchronous static file server (Rust)
---
# static-web-server Plugin
static-web-server is a high-performance, asynchronous web server for serving static files, written in Rust.
## Usage
Start a server serving files from the `./public` directory on port `8080`:
```bash
supercli static-web-server --port 8080 --root ./public
```
### Common Flags
| Flag | Short | Description | Default |
|------|-------|-------------|---------|
| `--host` | `-a` | Host address to bind | `::` (all interfaces) |
| `--port` | `-p` | Port to listen on | `80` |
| `--root` | `-d` | Root directory for static files | `./public` |
| `--log-level` | `-g` | Log level (error, warn, info, debug, trace) | `error` |
| `--grace-period` | `-q` | Grace period in seconds before shutdown | `0` |
| `--compression` | `-x` | Enable compression (gzip/deflate/brotli/zstd) | `true` |
| `--directory-listing` | `-z` | Enable directory listing | `false` |
| `--cors-allow-origins` | `-j` | CORS allowed origins (comma-separated) | (none) |
| `--basic-auth` | | Basic auth credentials (user:password, bcrypt) | (none) |
| `--version` | `-V` | Print version and exit | |
### Examples
Serve files from current directory on port 3000:
```bash
supercli static-web-server --port 3000 --root .
```
Enable verbose logging and directory listing:
```bash
supercli static-web-server --port 8080 --root ./public --log-level info --directory-listing
```
## Install
### From source (Cargo)
```bash
cargo install static-web-server
```
### Binary download
Download the latest release for your platform from:
https://github.com/static-web-server/static-web-server/releases
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!