An open API service indexing awesome lists of open source software.

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

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/).

[![Docker Image Size (latest)](https://img.shields.io/docker/image-size/gimo/echobin?color=light-green&logo=docker&style=flat-square)](https://hub.docker.com/r/gimo/echobin)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/masakichi/echobin/Run%20Tests?style=flat-square)](https://github.com/masakichi/echobin/actions)
[![License](http://img.shields.io/badge/license-mit-blue.svg?style=flat-square)](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 .
```