@ -10,6 +10,33 @@ Hello World example. More documentation is coming soon!
## What is gRPC?
gRPC is It enables communication between clients and servers using any combination of gRPC's supported languages, helping you to build distributed applications and services.
In gRPC, like
### Plays well with Protocol Buffers
While gRPC’s architecture allows it to be extended for use with other
data formats such as JSON, by default it uses protocol buffers, Google’s
mature open source mechanism for serializing structured data. As you'll
see in our example below, you define gRPC interfaces using proto files and
protocol buffer messages, letting you take advantage of protocol buffers’
efficient serialization, simple IDL, and easy interface updating. You
can find out lots more about protocol buffers in the [Protocol Buffers