grpc-go/examples
Theodore Salvo f2fbb0e07e
Deprecate use of `ioutil` package (#5906)
Resolves https://github.com/grpc/grpc-go/issues/5897
2023-01-03 11:20:20 -08:00
..
data examples: regenerate certs to use SHA256 signing algorithm (#5256) 2022-03-21 10:41:21 -07:00
features Deprecate use of `ioutil` package (#5906) 2023-01-03 11:20:20 -08:00
helloworld test/tools: update staticcheck version to latest (#5806) 2022-11-18 13:51:43 -08:00
route_guide Deprecate use of `ioutil` package (#5906) 2023-01-03 11:20:20 -08:00
README.md examples: cleanup README.md (#3738) 2020-07-14 16:59:29 -07:00
examples_test.sh examples: add feature/cancellation retry to example test script (#5846) 2022-12-07 10:52:57 -08:00
go.mod deps: update golang.org/x/net to latest in all modules (#5847) 2022-12-07 10:52:31 -08:00
go.sum deps: update golang.org/x/net to latest in all modules (#5847) 2022-12-07 10:52:31 -08: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.