grpc-go/examples
田欧 4e1a1ebe3a update markdown render (#1542) 2017-09-28 10:12:44 -07:00
..
helloworld Revert "Added localhost to net.Listen() calls to avoid macOS firewall dialog." (#1541) 2017-09-27 00:01:17 -07:00
route_guide Fix to avoid annoying firewall dialog on macOS (#1499) 2017-08-31 10:24:01 -07:00
README.md Update proto generation commands in example doc (#1481) 2017-08-28 12:27:18 -07:00
gotutorial.md update markdown render (#1542) 2017-09-28 10:12:44 -07:00

README.md

gRPC in 3 minutes (Go)

BACKGROUND

For this sample, we've already generated the server and client stubs from helloworld.proto.

PREREQUISITES

$ go help gopath
$ # ensure the PATH contains $GOPATH/bin
$ export PATH=$PATH:$GOPATH/bin

INSTALL

$ go get -u google.golang.org/grpc/examples/helloworld/greeter_client
$ go get -u google.golang.org/grpc/examples/helloworld/greeter_server

TRY IT!

  • Run the server
$ greeter_server &
  • Run the client
$ greeter_client

OPTIONAL - Rebuilding the generated code

1 First install protoc

  • For now, this needs to be installed from source
  • This is will change once proto3 is officially released

2 Install the protoc Go plugin.

$ go get -a github.com/golang/protobuf/protoc-gen-go

3 Rebuild the generated Go code.

$ go generate google.golang.org/grpc/examples/helloworld/...