| Crates.io | webbie |
| lib.rs | webbie |
| version | 0.1.0 |
| created_at | 2025-07-30 21:17:04.821574+00 |
| updated_at | 2025-07-30 21:17:04.821574+00 |
| description | A tiny local HTTP server to test web hooks or other incoming HTTP requests |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1774081 |
| size | 52,728 |
A lightweight HTTP server for testing webhooks and inspecting HTTP requests with beautiful syntax highlighting.
Install webbie globally using Cargo:
cargo install webbie
Start a server on any port:
webbie --port 8080
Or use the short flag:
webbie -p 3000
Once running, webbie will display all incoming HTTP requests with:
POST /webhook/github
content-type: application/json
user-agent: GitHub-Hookshot/abc123
------ Body: ------
{
"action": "opened",
"number": 42,
"pull_request": {
"title": "Add new feature",
"user": {
"login": "octocat"
}
}
}
MIT