One of the smallest http servers written in Rust
- Routing system inspired by express
- Single executable, cross-platform, zero dependencies
- Configurable via environment variables
cargo build --release
rustup target add x86_64-unknown-linux-musl
cargo build --release --target x86_64-unknown-linux-musl
cargo install --path .
You can install httpie as system service, follow the relevant instructions on the web
- Run at default address 127.0.0.1:8080
httpie
- Run at user-defined address
httpie -a 0.0.0.0:12345
- More information
httpie --help