An open API service indexing awesome lists of open source software.

https://github.com/pascalallen/grpc-go

grpc-go is a module that is designed to give you a gRPC server and client in Go, right out of the box. There is a publication for this repository which can be found at https://pascalallen.medium.com/how-to-build-a-grpc-server-in-go-943f337c4e05.
https://github.com/pascalallen/grpc-go

go grpc protocol-buffers remote-pr rpc

Last synced: 5 months ago
JSON representation

grpc-go is a module that is designed to give you a gRPC server and client in Go, right out of the box. There is a publication for this repository which can be found at https://pascalallen.medium.com/how-to-build-a-grpc-server-in-go-943f337c4e05.

Awesome Lists containing this project

README

          

# grpc-go

grpc-go is a module that is designed to give you a gRPC server and client in Go, right out of the box. There is a publication for this repository which can be found [here](https://pascalallen.medium.com/how-to-build-a-grpc-server-in-go-943f337c4e05).

## Prerequisites

- [Go](https://go.dev/dl/)

## gRPC server and client usage

### Run the project's gRPC server from project root

```bash
go run server/main.go
```

### Execute the project's gRPC client request from project root

```bash
go run client/main.go
```