© 2023 Hashnode
#protobuf
Compiling .proto Files into TypeScript Using ts-proto In my experience working with an Nx monorepo Next.js project on Windows, I encountered a path issue that prevented me from compiling the .proto file directly. To resolve this problem, I …
TL;DR This blog post shows how to replace .NET reflection with the functionality available on the IMessage interface, when dealing with C# objects generated using Protobuf's protoc compiler. IMessage.Descriptor is the way to access Protobuf…
Hello everyone, As someone whose GitHub status usually revolves around "figuring out mega-scaled applications," I wanted to share some of my findings on how microservices and gRPC are revolutionizing scalability in modern software developme…
Foreword I have been recently learning about using gRPC in Go. I have been liking it so far! The notion of using protocol buffers and HTTP 2.0 is exciting to me. I find it cool to make remote calls on…
what is gRPC? To understand gRPC first we need to know what RPC is.RPC(Remote Procedure Call) is used to create Inter-Process-Communication between services where services can communicate with each ot…
Before we get into gRPC, let's first understand what RPC is. RPC stands for Remote Procedure Call. It is a form of communication in which systems use function calls to communicate over a network. It i…
ProtoBuf is language-neutral, platform-neutral, extensible mechanism for serializing structured data in a forward-compatible and backward-compatible way. In common term it is a data encoding format ju…
What are Protocol Buffers? Protocol buffers (also referred to as Protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but smaller, faster, and simpler. You define how y…
Installing GPRC and Protobuf with Laravel Forge is easy. Just follow these steps. Adding the script to recipes Go to Recipes Put any name Keep user as root Add the following script to the script input and click Create button sudo pecl ins…
Efficient communication is often one of the main drivers for modern software systems, even in a microservice driven world. gRPC can deal with these requirements. In this article, we will look at some …