gRPC server app using Go

Go gRPC server

TL;DR The source code is available in https://github.com/rinoymjoseph/learning-go Create a directory Initialize a go project named ‘grpc-demo’ Create a directory to place proto file Install protoc-gen-go and protoc-gen-go-grpc. Add GOPATH/bin to path  Generate the gRPC stubs that can be used to implement the service and consume from clients This creates two files in calc folder. … Read more