gRPC Simplified

A comprehensive example to gRPC

Rei
Published in
3 min readOct 24, 2021

--

Hello everyone, I’m learning the gRPC world and making articles about it as simple as possible. This is part 3. This time I tried to explain to myself with the most simple example (both Client/Server) to learn gRPC. Hope you like it!

Previous Parts

First Part

A comprehensive introduction to ProtoBuf

Second Part

A comprehensive introduction to gRPC

I tried to make the gRPC service as simple as and the most suitable for real-life possible

I’ll give you the code part by part but you can get the whole working project from GitHub I’ll put it at the end of the article

Proto File

Initial Setup

Client-Side

Server-Side

Unary

Scenario

--

--