Build a gRPC API using Go and gRPC-gateway
In this guide, we’ll begin by exploring the fundamentals of gRPC, understanding its purpose and use cases. Following that, we’ll look at how Protocol Buffers work and how to write…
Favourite tutorials for developers
In this guide, we’ll begin by exploring the fundamentals of gRPC, understanding its purpose and use cases. Following that, we’ll look at how Protocol Buffers work and how to write…
Microservices have emerged as a powerful architectural paradigm for developing complex, scalable, and maintainable software systems. By breaking down applications into smaller, loosely coupled services, developers can create a more…
In this article, we are going to look into, grpc-gateway The gRPC-Gateway is a plugin of the Google protocol buffers compiler protoc. It reads protobuf service definitions and generates a…
In this article, we will learn how to create a simple grpc-gateway with Go. For this, we need to prepare our Go project for the grpc-gateway. You can find detailed…
gRPC-Gateway is a plugin that generates a reverse proxy server for gRPC services that convert Restful/JSON into gRPC and vice versa. In other words, gRPC-Gateway will create a layer over…
In this article, we are going to build a NodeJS service and a Golang client using the gRPC framework and Protobuf.
In this article we are going to take a look at Protocol Buffers. Some of its advantages how it fits into gRPC for a MicroService architecture and then we are…