GitXplorerGitXplorer
p

grpc-gateway-example

public
637 stars
113 forks
12 issues

Commits

List of commits on branch master.
Unverified
a269bcb5931ca92be0ceae6130ac27ae89582ecc

Merge pull request #17 from graphaelli/update-grpc-gateway

pphilips committed 8 years ago
Unverified
4a163a17c3e0d14279cabed56ed8021882c0b6a8

regenerate grpc-gateway code

ggraphaelli committed 8 years ago
Unverified
149122549b870be2c5a4225c0d417aa0a37360d3

Merge pull request #15 from tmc/update

pphilips committed 8 years ago
Unverified
717fc132c16e4602e610a4dae9242cd551568e4e

reflect upstream import path change

ttmc committed 8 years ago
Unverified
0412e3928cb7d47e68b91971a8e79f93d92361ee

Merge pull request #13 from samuelvarley/master

pphilips committed 8 years ago
Unverified
7cd2f2b254070a3bba987f2e99b3bcf1d553d920

Update the autogenerated code

ssamuelvarley committed 8 years ago

README

The README file for this repository.

gRPC + REST Gateway Play

Blog post: https://coreos.com/blog/gRPC-protobufs-swagger.html

To try it all out do this:

$ go get -u github.com/philips/grpc-gateway-example
$ grpc-gateway-example serve
$ grpc-gateway-example echo "my first rpc echo"
$ curl -X POST -k https://localhost:10000/v1/echo -H "Content-Type: text/plain" -d '{"value": "foo"}'
{"value":"my REST echo"}

Huge thanks to the hard work people have put into the Go gRPC bindings and gRPC to JSON Gateway