https://github.com/nousefreak/http-debug
https://github.com/nousefreak/http-debug
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nousefreak/http-debug
- Owner: NoUseFreak
- Created: 2019-11-22T13:10:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-22T00:20:43.000Z (over 2 years ago)
- Last Synced: 2025-01-30T23:26:49.250Z (over 1 year ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# http-debug
Ultra small webserver that prints and logs your requests.
```bash
$ docker run -d -p 8080:8080 nousefreak/http-debug
```
```bash
$ curl 127.0.0.1:8080/sdf -H "Host:somehost.com" -H "X-Custom-Header: bla"
GET /sdf HTTP/1.1
Host: somehost.com
Accept: */*
User-Agent: curl/7.54.0
X-Custom-Header: bla
```