Tag: grpc
-
Understanding gRPC: A Complete Guide for Modern Developers
I was reading about the gRPC recently and was wondering what all this about? Believe me, I was in the same boat not too long ago. I didn’t even know what exactly gRPC means before this. If you’re curious about how to inspect gRPC traffic, check out this guide on capturing gRPC traffic going out…
-
gRPC vs. REST: A Comparative Guide
In the world of APIs, there are many different architectural styles for building APIs, and each one has its own benefits, cons, and ideal use cases, but two prominent approaches dominate the landscape: gRPC and REST. Both have their unique strengths and weaknesses, making them suitable for different scenarios. In this blog, we’ll delve into…
-
Capture gRPC Traffic going out from a Server
How does gRPC work? A quick Google search would tell you that it uses HTTP/2.0 under the hood, but that’s about it. Most available guides talk about gRPC internals by assuming that you are already deeply familiar with HTTP/2.0, and the only proper documentation for HTTP/2 is the official RFC document, which doesn’t contain implementation…