| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A lightweight HTTP request inspector and debugging tool written in Go. Tiny RequestBin captures and displays HTTP requests for inspection and debugging purposes.
This project was initially created with Gemini, later modified with GitHub Copilot, and is now maintained with Codex.
go install github.com/knktc/tiny-requestbin@latestPrebuilt binaries are available for macOS, Linux, and Windows in Releases.
After downloading the archive for your platform, extract it and run the binary normally.
On macOS, Gatekeeper may block the binary the first time you open it. You can remove the quarantine attribute and make it executable with:
chmod +x tiny-requestbin
xattr -d com.apple.quarantine tiny-requestbinThen run it normally:
./tiny-requestbinIf macOS still blocks it, you can also allow it from System Settings > Privacy & Security.
Note: I do not have a Windows machine, so I have not verified the Windows binary yet. Feedback is very welcome if you try it.
# Pull and run the latest image
docker run -p 8282:8282 knktc/tiny-requestbin
# Or run with custom options
docker run -p 8282:8282 knktc/tiny-requestbin -port 8282 -listen 0.0.0.0 -max 1000
# Using docker-compose
docker-compose up -d# Install with default settings
helm install my-requestbin helm/tiny-requestbin/
# Install with custom options
helm install my-requestbin helm/tiny-requestbin/ \
--set config.max=1000 \
--set service.type=NodePort
# Enable HTTPRoute (Gateway API)
helm install my-requestbin helm/tiny-requestbin/ \
--set httpRoute.enabled=true \
--set 'httpRoute.parentRefs[0].name=my-gateway' \
--set 'httpRoute.hostnames[0]=requestbin.example.com'By default the chart deploys with image knktc/tiny-requestbin:latest, exposes port 8282 via a ClusterIP Service, and sets resource limits to 128Mi memory / 500m CPU.
git clone https://github.com/knktc/tiny-requestbin.git
cd tiny-requestbin
go buildStart the server with default options:
tiny-requestbinExample with custom options:
tiny-requestbin -port 9000 -listen 0.0.0.0 -max 1000 -cliRun with HTTPS:
tiny-requestbin -port 9443 -listen 127.0.0.1 \
-tls-cert ./certs/localhost.pem \
-tls-key ./certs/localhost-key.pemThe Docker image supports multiple architectures:
Multi-architecture images are automatically built and published via GitHub Actions when tags are pushed.
The web interface provides a clean and intuitive way to browse and inspect captured requests:
When running with the -cli flag, HTTP requests are beautifully formatted and displayed directly in the terminal:
Contributions are welcome! Feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
| Back | FazBrowse Home | New Git URL |