grpc-go/examples
Theodore Salvo c90744f16a
oauth: mark `NewOauthAccess` as deprecated and update examples to use `TokenSource` (#5882)
* Mark NewOauthAccess as deprecated & change examples

* Fix composite literal uses unkeyed fields for v1.19
2022-12-27 21:06:47 -06:00
..
data examples: regenerate certs to use SHA256 signing algorithm (#5256) 2022-03-21 10:41:21 -07:00
features oauth: mark `NewOauthAccess` as deprecated and update examples to use `TokenSource` (#5882) 2022-12-27 21:06:47 -06:00
helloworld test/tools: update staticcheck version to latest (#5806) 2022-11-18 13:51:43 -08:00
route_guide test/tools: update staticcheck version to latest (#5806) 2022-11-18 13:51:43 -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.