grpc-go

The Go language implementation of gRPC. HTTP/2 based RPC (by grpc)

Grpc-go Alternatives

Similar projects and alternatives to grpc-go

  1. go

    2,261 grpc-go VS go

    The Go programming language

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. kubernetes

    Production-Grade Container Scheduling and Management

  4. prometheus

    The Prometheus monitoring system and time series database.

  5. Grafana

    443 grpc-go VS Grafana

    The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.

  6. Caddy

    Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS

  7. Protobuf

    Protocol Buffers - Google's data interchange format

  8. git-lfs

    Git extension for versioning large files

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. Echo

    133 grpc-go VS Echo

    High performance, minimalist Go web framework

  11. jaeger

    CNCF Jaeger, a Distributed Tracing Platform

  12. GORM

    83 grpc-go VS GORM

    The fantastic ORM library for Golang, aims to be developer friendly

  13. viper

    78 grpc-go VS viper

    Go configuration with fangs

  14. validator

    :100:Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving

  15. pgx

    73 grpc-go VS pgx

    PostgreSQL driver and toolkit for Go

  16. swag

    41 grpc-go VS swag

    Automatically generate RESTful API documentation with Swagger 2.0 for Go.

  17. Redis

    34 grpc-go VS Redis

    Redis Go client

  18. opentracing-javascript

    Discontinued OpenTracing API for Javascript (both Node and browser). 🛑 This library is DEPRECATED! https://github.com/opentracing/specification/issues/163

  19. elastic

    Deprecated: Use the official Elasticsearch client for Go at https://github.com/elastic/go-elasticsearch

  20. go-elasticsearch

    The official Go client for Elasticsearch

  21. mongo-go-driver

    The Official Golang driver for MongoDB

  22. kafka-go

    Kafka library in Go

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better grpc-go alternative or higher similarity.

grpc-go discussion

Log in or Post with

grpc-go reviews and mentions

Posts with mentions or reviews of grpc-go. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-05-10.
  • How to Call gRPC Methods Dynamically in Go
    3 projects | dev.to | 10 May 2025
    Typically, services are registered with a gRPC server immediately after creation, as shown in the helloworld example provided by grpc team:
  • xAI Grok API Beta
    2 projects | news.ycombinator.com | 21 Oct 2024
    There's no Remote Procedure Call built into the protocol. JsonRPC is also not RPC in itself.

    It's like GraphQL with resolvers.

    They have you imagine it's a procedure, but you can ignore that.

    Here's the golang gRPC Hello World where the equivalent of a resolver in GraphQL replies directly w/o need for a procedure by that name. https://github.com/grpc/grpc-go/blob/master/examples/hellowo...

  • Consistent Hashing: An Overview and Implementation in Golang
    3 projects | dev.to | 7 May 2024
    grpc-go: go get -u google.golang.org/grpc
  • Reverse Engineering Protobuf Definitions from Compiled Binaries
    5 projects | news.ycombinator.com | 9 Mar 2024
    The reflection service is open-sourced (at least for some sdks):

    * https://github.com/grpc/grpc-go/blob/master/Documentation/se...

    * https://chromium.googlesource.com/external/github.com/grpc/g...

  • gRPC Name Resolution & Load Balancing on Kubernetes: Everything you need to know (and probably a bit more)
    5 projects | dev.to | 6 Feb 2024
    We’re hoping to make this rate at least optional via this pull request but as the time of writing this blog, it’s nothing we can do to circle our way around it.
  • Full Stack Forays with Go and gRPC
    5 projects | dev.to | 5 Jun 2023
    First, I started with gRPC’s recommended starter repository for learning gRPC, their **helloworld **example, which is a part of the official gRPC repository.
  • Tools besides Go for a newbie
    36 projects | /r/golang | 26 Mar 2023
    IDE: use whatever make you productive. I personally use vscode. VCS: git, as golang communities use github heavily as base for many libraries. AFAIK Linter: use staticcheck for linting as it looks like mostly used linting tool in go, supported by many also. In Vscode it will be recommended once you install go plugin. Libraries/Framework: actually the standard libraries already included many things you need, decent enough for your day-to-day development cycles(e.g. `net/http`). But here are things for extra: - Struct fields validator: validator - Http server lib: chi router , httprouter , fasthttp (for non standard http implementations, but fast) - Web Framework: echo , gin , fiber , beego , etc - Http client lib: most already covered by stdlib(net/http), so you rarely need extra lib for this, but if you really need some are: resty - CLI: cobra - Config: godotenv , viper - DB Drivers: sqlx , postgre , sqlite , mysql - nosql: redis , mongodb , elasticsearch - ORM: gorm , entgo , sqlc(codegen) - JS Transpiler: gopherjs - GUI: fyne - grpc: grpc - logging: zerolog - test: testify , gomock , dockertest - and many others you can find here
  • Curl 8.0.1 because I jinked it
    5 projects | news.ycombinator.com | 21 Mar 2023
    If you read the first comment, you’ll see the API was documented as being experimental.

    https://github.com/grpc/grpc-go/issues/3798#issuecomment-670...

  • When is go not a good choice?
    7 projects | /r/golang | 3 Mar 2023
    The lack of this analysis still results in bugs and CVEs. See how many races are found and fixed in gRPC releases: https://github.com/grpc/grpc-go/releases (search "race"). It's a shame Google does not publish these as CVEs, because many of them qualify.
  • Rust for backend. Is it recommended?
    4 projects | /r/rust | 28 Feb 2023
    I like to point people at this release to show that not even Google -- in its own language on its own library for its own RPC protocol -- can write thread-safe Go, so what chance does anyone else have. Maybe we have to stop thinking of Go as a language for mission critical parallel computing and think of it more like a Python 4 made for low-risk prototyping. Mature libraries help for that prototyping, you know how to put them together and get something working, that something just won't be scaleable, efficient, or thread-safe.
  • A note from our sponsor - SaaSHub
    www.saashub.com | 12 May 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic grpc-go repo stats
32
21,810
9.7
3 days ago

grpc/grpc-go is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of grpc-go is Go.


Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Go is
the 4th most popular programming language
based on number of references?