Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alessiosavi/gohttpdebugrequest
Debug the GET POST request information by sending them to this server
https://github.com/alessiosavi/gohttpdebugrequest
debug-http http-request-debug test-endpoint
Last synced: about 6 hours ago
JSON representation
Debug the GET POST request information by sending them to this server
- Host: GitHub
- URL: https://github.com/alessiosavi/gohttpdebugrequest
- Owner: alessiosavi
- License: mit
- Created: 2020-04-16T17:51:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-08T21:37:58.000Z (almost 4 years ago)
- Last Synced: 2024-06-19T14:59:48.984Z (7 months ago)
- Topics: debug-http, http-request-debug, test-endpoint
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GoHttpDebugRequest
Debug the GET POST request information by sending them to this server## Usage
A simple Go server delegated to print the information related to the given HTTP request.
It spawn different endpoint for every method:
- GET (/get)
- HEAD (/head)
- POST (/post)
- PUT (/put)
- DELETE (/delete)
- CONNECT (/connect)
- OPTIONS (/options)
- TRACE (/trace)
- PATCH (/patch)
In order to run the tool, you need to proviede two input parameter:
- Port where bind the service (-port)
- Host where bind the service (-host)
If the parameter are not provided, it use `9999` as default port and `localhost` as default host.
## Help
Usage of ./GoHttpDebugRequest:
- -host string
Bind the server to the given host (default "localhost")
- -port int
Bind the server to the given port (default 9999)