1
0
mirror of https://github.com/gusaul/grpcox.git synced 2024-09-29 04:10:39 +00:00
Go to file
2019-09-13 14:46:36 +07:00
core add expiry connection and automatic close 2019-04-05 18:07:19 +07:00
handler add expiry connection and automatic close 2019-04-05 18:07:19 +07:00
index add demo assets 2019-04-05 10:27:07 +07:00
vendor Dockerize grpcox 2019-03-25 10:47:41 +07:00
.gitignore add expiry connection and automatic close 2019-04-05 18:07:19 +07:00
config.env add expiry connection and automatic close 2019-04-05 18:07:19 +07:00
docker-compose.yml fix docker compose to enabling exposing port 2019-09-13 14:46:27 +07:00
Dockerfile Dockerize grpcox 2019-03-25 10:47:41 +07:00
Gopkg.lock Dockerize grpcox 2019-03-25 10:47:41 +07:00
Gopkg.toml Dockerize grpcox 2019-03-25 10:47:41 +07:00
grpcox.go add expiry connection and automatic close 2019-04-05 18:07:19 +07:00
LICENSE Create LICENSE 2018-11-05 03:10:47 +07:00
Makefile add running method alternatives 2019-09-13 14:46:36 +07:00
README.md add running method alternatives 2019-09-13 14:46:36 +07:00

gRPCox

Go Report Card

turn gRPCurl into web based UI, extremely easy to use

Features

  • Recognize and provide list of services and methods inside it as an options.
  • Automatically recognize schema input and compose it into JSON based. (ensure your gRPC server supports server reflection). Examples for how to set up server reflection can be found here.
  • Save established connection, and reuse it for next invoke/request (also can close/restart connection)

Installation

Docker Compose

from terminal, move to grpcox directory, then run command

docker-compose up

if you're using docker and want to connect gRPC on your local machine, then use
host.docker.internal:<your gRPC port> instead of localhost

Golang

if you have golang installed on your local machine, just run command

make start

configure app preferences by editing config.env file

var usage type unit
MAX_LIFE_CONN maximum idle time connection before closed number minute
TICK_CLOSE_CONN ticker interval to sweep expired connection number second

set value 0 (zero) to disable auto close idle connection.

then you can rebuild app by execute command

docker-compose up --build

Demo

gRPCox Demo