https://github.com/yuanji-dev/echobin
Yet another Golang port of httpbin
https://github.com/yuanji-dev/echobin
echo go httpbin
Last synced: 5 months ago
JSON representation
Yet another Golang port of httpbin
- Host: GitHub
- URL: https://github.com/yuanji-dev/echobin
- Owner: yuanji-dev
- License: mit
- Created: 2022-01-26T03:27:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-24T09:50:03.000Z (over 3 years ago)
- Last Synced: 2024-12-25T17:14:03.255Z (10 months ago)
- Topics: echo, go, httpbin
- Language: Go
- Homepage: https://httpbin.yuanji.dev
- Size: 828 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# echobin
Yet another Golang port of [httpbin](https://httpbin.org/)(a HTTP request & response testing service), powered by [echo framework](https://echo.labstack.com/).
[](https://hub.docker.com/r/gimo/echobin)
[](https://github.com/masakichi/echobin/actions)
[](https://github.com/masakichi/echobin/blob/main/LICENSE)## Online Instance
- [https://echobin.gimo.me](https://echobin.gimo.me)
## Run Locally
- Run in docker
```bash
docker run -p 8080:8080 gimo/echobin
```- Or if you have Go 1.16+ installed
```bash
git clone https://github.com/masakichi/echobin.git
cd echobin
go run .
```