zig VS go

Compare zig vs go and see what are their differences.

zig

General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. (by ziglang)
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
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
zig go
902 2,276
39,860 128,800
1.5% 0.6%
10.0 10.0
about 5 hours ago about 17 hours ago
Zig Go
MIT License BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

zig

Posts with mentions or reviews of zig. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-07-03.
  • Zig paradigm shift – initial Writergate
    7 projects | news.ycombinator.com | 3 Jul 2025
    Actually, nobody.

    Here is the commit where Reader/Writer was introduced: https://github.com/ziglang/zig/commit/5e212db29cf9e2c06aba36...

    This is a few months after `git init`. You can see I was really just working on the parser, with a toy example to get things started.

    Over time, I merged contributions that made minor changes and shuffled things around, and these APIs evolved to kind of work okay. But nobody really considered "the Zig IO stack" as a whole and put in design effort. That is happening for the first time right now.

  • Allocators Are Monkeys with Typewriters
    1 project | news.ycombinator.com | 22 Jun 2025
  • Bzip2 crate switches from C to 100% rust
    7 projects | news.ycombinator.com | 17 Jun 2025
    This list's Zig as an entry, despite the Zig project having very clear plans[0] for a 1.0 release. That's not 0ver, it's just the beta stage of semver.

    [0] https://github.com/ziglang/zig/milestone/2

  • Show HN: Dk – A script runner and cross-compiler, written in OCaml
    2 projects | news.ycombinator.com | 16 Jun 2025
    I usually structure teaching the same way done in https://www.writethedocs.org/videos/eu/2017/the-four-kinds-o.... So "the Quick Walkthrough Guide will explain what dk scripts are and give you small examples to run" is simply a learning-oriented tutorial which is mostly about giving students confidence and visual feedback. And simultaneously it an explanation of nothing (the video has a great explanation for why to do that). So, I agree that an explanation of threads + Internet + cross-compilation would quite nuts, but for an experienced developer I'd expect to see a meaty example (take a look at https://ziglang.org/ for comparison).

    One concrete action may be to make two distinct Quick Start guides ... one for the experienced and one for the inexperienced students though. Is that your thinking?

  • Zig Devlog: Self-Hosted x86 Back End Is Now Default in Debug Mode
    15 projects | news.ycombinator.com | 8 Jun 2025
  • Low-Level Optimization with Zig
    7 projects | news.ycombinator.com | 7 Jun 2025
    > I feel like I can write powerful code in any language, but the goal is to write code for a framework that is most future proof, so that you can maintain modular stuff for decades.

    I like Zig a lot, but long-term maintainability and modularity is one of its weakest points IMHO.

    Zig is hostile to encapsulation. You cannot make struct members private: https://github.com/ziglang/zig/issues/9909#issuecomment-9426...

    Key quote:

    > The idea of private fields and getter/setter methods was popularized by Java, but it is an anti-pattern. Fields are there; they exist. They are the data that underpins any abstraction. My recommendation is to name fields carefully and leave them as part of the public API, carefully documenting what they do.

    You cannot reasonably form API contracts (which are the foundation of software modularity) unless you can hide the internal representation. You need to be able to change the internal representation without breaking users. I hope Zig reverses this decision someday and supports private fields.

  • Why Use Structured Errors in Rust Applications?
    3 projects | news.ycombinator.com | 1 Jun 2025
    > Did Zig really do that?

    https://github.com/ziglang/zig/issues/544#issuecomment-61807...

    > In order to simplify everything, tabs are not allowed. Spaces are necessary; we can't ban spaces.

    They seem to be open to the alternative but not to a solution that isn't forced on people:

    > Maybe someday, we'll switch to tabs for indentation, spaces for alignment and make it a compile error if they are incorrectly mixed

    Zig already has a builtin code formatter that automatically changes formatting to their preference, but that's not enough.

  • A new language inspired by Go
    4 projects | news.ycombinator.com | 29 May 2025
    Zig solved this by not having a string type at all and not shipping full Unicode support in std: https://github.com/ziglang/zig/issues/234#issuecomment-27630....
  • Learning C3 (As a Zig User)
    7 projects | news.ycombinator.com | 29 May 2025
  • What is Bun? The Node.js Alternative Explained
    1 project | dev.to | 28 May 2025
    Bun is written from scratch in Zig, a low-level language focused on performance and safety. Instead of using V8 (the engine behind Node and Deno), Bun runs on JavaScriptCore, the engine used in Safari. This choice helps it stay fast and efficient, both in terms of memory and startup time.

go

Posts with mentions or reviews of go. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-06-09.
  • Go Blog: Generic Interfaces
    1 project | news.ycombinator.com | 8 Jul 2025
    > I didn't realize how important order was to type inference.

    I was unclear, I'm afraid. You can reorder the type parameters, it just changes which of them you need to specify: https://go.dev/play/p/oDIFl3fZiPl

    The point is that you can only leave off elements from the end of the list, to have them automatically inferred.

    > Are there any real packages out there using these techniques?

    I think so far, the usage of generics for containers in Go is still relatively sparse, in public code. I think in part that is because the documentation of how to do that is relatively sparse. That is part of the motivation for the post, to have a bit of somewhat official documentation for these things, so they become more widely known.

    The standard library is just starting to add generic containers: https://github.com/golang/go/issues/69559 And part of that is discussing how we want to do things like this: https://github.com/golang/go/issues/70471

    That being said, I have used the pointer receiver thing in my dayjob. One example is protobuf. We have a generic helper to set a protobuf enum from the environment. Because of how the API was designed, that required a pointer receiver constraint.

  • From Polling to Partying: Writing Cooler Goroutines with sync.Cond
    1 project | dev.to | 25 Jun 2025
    Source code for sync.Cond.Wait() (Go standard library) https://github.com/golang/go/blob/master/src/sync/cond.go For those who want to go under the hood and see how Wait() really works internally (with runtime_notifyListWait).
  • Green Tea Garbage Collector
    1 project | news.ycombinator.com | 13 Jun 2025
  • Why I'm excited about Go for agents
    12 projects | news.ycombinator.com | 9 Jun 2025
    > Lack of proper enums is hurting so much I can't describe it.

    Do you mean sum types? Its enums function just pretty much like enums in every single other language under the sun. If anything, Go enums are more advanced than most languages, allowing things like bit shifts. But at the heart of it all, it's all just the same. Here are enum implementations in both Go and Rust:

    [Go] https://github.com/golang/go/blob/f18d046568496dd331657df4ba...

    [Rust] https://github.com/rust-lang/rust/blob/40daf23eeb711dadf140b...

    While Go leans on the enumerator value produced by `range`, while Rust performs explicit incrementing, the outcome is no different — just plain [n=0, n++].

  • Too Many Open Files
    1 project | news.ycombinator.com | 6 Jun 2025
    This is one of the many things where Go just takes care of automatically. Since Go 1.19, if you import the os package, on startup, the open file soft limit will be raised to the hard limit: https://github.com/golang/go/commit/8427429c592588af8c49522c...
  • sync.Cond in Go: Efficient Goroutine Signaling Without Channels
    1 project | dev.to | 4 Jun 2025
    For a deeper dive, check out the source code for sync.Cond.
  • Syntactic Support for Error Handling
    10 projects | news.ycombinator.com | 3 Jun 2025
    > But is know that the current way of Go (that is a insignificant improvement over the C way) sucks and ANY of the other ways are truly better […]

    This is a bold statement for something so subjective. I'll note that the proposal to leave the status quo as-is is probably one of the most favorably voted Go proposals of all time: https://github.com/golang/go/issues/32825

    Go language design is not a popularity contest or democracy (if nothing else because it is not clear who would get a vote). But you won't find any other proposal with thousands of emoji votes, 90% of which are in favor.

    I get the criticism and I agree with it to a degree. But boldly stating that criticism as objective and universal is uninformed.

  • Go green tea experimental garbage collector
    1 project | news.ycombinator.com | 31 May 2025
  • Understanding the Go Scheduler
    1 project | news.ycombinator.com | 21 May 2025
    Relevant proposal to make GOMAXPROCS cgroup-aware: https://github.com/golang/go/issues/73193
  • Pkg.go.dev Is Down
    1 project | news.ycombinator.com | 20 May 2025

What are some alternatives?

When comparing zig and go you can also consider the following projects:

ssr-proxy-js - A Node.js tool for Server-Side Rendering (SSR) and Static Site Generation (SSG) using headless Chrome via Puppeteer

v - Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io

Odin - Odin Programming Language

Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).

TinyGo - Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.

Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
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