grpc-go/examples
Easwar Swaminathan ea41fbfa10
examples: unix abstract socket (#4848)
2021-10-11 14:55:45 -07:00
..
data testdata: Update testdata certs. (#3786) 2020-08-05 09:55:07 -07:00
features examples: unix abstract socket (#4848) 2021-10-11 14:55:45 -07:00
helloworld example: improve hello world server with starting msg (#4468) 2021-05-26 11:17:27 -07:00
route_guide example: correct the default value for server_host_override (#4407) 2021-05-14 14:09:26 -07:00
README.md examples: cleanup README.md (#3738) 2020-07-14 16:59:29 -07:00
examples_test.sh examples: unix abstract socket (#4848) 2021-10-11 14:55:45 -07:00
go.mod multiple: remove support for Go 1.11 (#4700) 2021-08-24 14:24:34 -07:00
go.sum xds: update go-control-plane to latest (#4737) 2021-09-07 11:11:16 -07:00
gotutorial.md cmd/protoc-gen-go-grpc: revert to interface-based service registration (#3911) 2020-09-29 15:17:06 -07:00

README.md

gRPC Hello World

Follow these setup to run the quick start example:

  1. Get the code:

    $ go get google.golang.org/grpc/examples/helloworld/greeter_client
    $ go get google.golang.org/grpc/examples/helloworld/greeter_server
    
  2. Run the server:

    $ $(go env GOPATH)/bin/greeter_server &
    
  3. Run the client:

    $ $(go env GOPATH)/bin/greeter_client
    Greeting: Hello world
    

For more details (including instructions for making a small change to the example code) or if you're having trouble running this example, see Quick Start.