Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tjamet/go-http-echo
A simple service that logs all the requests and responds with the original request content
https://github.com/tjamet/go-http-echo
Last synced: 8 days ago
JSON representation
A simple service that logs all the requests and responds with the original request content
- Host: GitHub
- URL: https://github.com/tjamet/go-http-echo
- Owner: tjamet
- License: apache-2.0
- Created: 2018-09-25T14:42:07.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-24T07:33:30.000Z (about 5 years ago)
- Last Synced: 2023-02-25T22:11:55.891Z (over 1 year ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-http-echo
A simple service that logs all the requests and responds with the original request content# run
```bash
go get -u github.com/tjamet/go-http-echo
go-http-echo
curl localhost:8080/hello -d world
``````bash
docker run -P --rm --name http-echo tjamet/http-echo
curl $(docker port http-echo 8080)/hello -d world
```