Golang in Action: How to implement a simple distributed system

This page summarizes the projects mentioned and recommended in the original post on dev.to

JetBrains - Tell us how you use coding tools. You may win a prize!
Are you a developer or a data analyst? Share your thoughts about your coding tools in our short survey and get a chance to win prizes!
surveys.jetbrains.com
featured
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
featured
  1. gRPC

    C++ based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)

    First, let's think about how to make nodes to communicate with each other. The most common way is API, which yet has a drawback that it requires nodes to expose their IP addresses and ports to others, which is very insecure particularly in the public network. In light of that, we chose gRPC, a popular Remote Procedure Call (RPC) framework. We won't go deep into its technical details, but it is actually a mechanism to allow remote machines to execute commands by RPC callers.

  2. JetBrains

    Tell us how you use coding tools. You may win a prize! Are you a developer or a data analyst? Share your thoughts about your coding tools in our short survey and get a chance to win prizes!

    JetBrains logo
  3. Protobuf

    Protocol Buffers - Google's data interchange format

    Then we create a Protocol Buffers file node.proto, a gRPC protocol file, and enter below content.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Show HN: BinaryRPC – Lightweight WebSocket-based RPC framework in modern C++

    5 projects | news.ycombinator.com | 12 Jul 2025
  • Getting Started With gRPC in Golang

    2 projects | dev.to | 3 Apr 2025
  • How does saving work in complex games using Unity?

    3 projects | /r/gamedev | 15 Aug 2022
  • CMake: How to lay out a multiple language project with a common dependency?

    3 projects | /r/cpp_questions | 11 Apr 2021
  • CHAT-SERVER using gRPC Bidirectional Streaming

    3 projects | dev.to | 24 Feb 2021

Did you know that C++ is
the 7th most popular programming language
based on number of references?