https://github.com/robert-wallis/http-echo
Simple HTTP server that just echos everything to the console. For debugging POST requests.
https://github.com/robert-wallis/http-echo
golang http http-server testing-tools
Last synced: 3 months ago
JSON representation
Simple HTTP server that just echos everything to the console. For debugging POST requests.
- Host: GitHub
- URL: https://github.com/robert-wallis/http-echo
- Owner: robert-wallis
- Created: 2018-04-26T04:58:34.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-26T06:52:33.000Z (almost 8 years ago)
- Last Synced: 2025-11-17T16:02:54.980Z (5 months ago)
- Topics: golang, http, http-server, testing-tools
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# http-echo
Simple HTTP server that just echos everything to the console. For debugging POST requests.
# Installation
```
go get -u github.com/robert-wallis/http-echo
```
# Usage
## Basic
Starts listening at http://localhost:8000/ and prints all requests to the console.
```
http-echo
```
## Custom Port
Starts listening on your IP from anywhere (on your LAN), and prints all requests to the console.
```
sudo http-echo -address 0.0.0.0:80
```