turborepo VS go

Compare turborepo vs go and see what are their differences.

turborepo

Incremental bundler and build system optimized for JavaScript and TypeScript, written in Rust – including Turborepo and Turbopack. [Moved to: https://github.com/vercel/turbo] (by vercel)
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
turborepo go
84 2,276
14,873 128,800
- 0.6%
9.8 10.0
over 2 years ago 7 days ago
Rust Go
Mozilla Public License 2.0 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.

turborepo

Posts with mentions or reviews of turborepo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-06-16.
  • My Fav Open Source GitHub Tools 2025 as a Developer
    9 projects | dev.to | 16 Jun 2025
    GitHub: vercel/turborepo
  • A 10x Faster TypeScript
    38 projects | news.ycombinator.com | 11 Mar 2025
  • [Part 1] Build a CLI tool: Setup the tsonfig.json
    3 projects | dev.to | 3 Feb 2025
    When you setup a monorepo using turbo, the basic template gives you 3 packages by default. This can be found in turborepo/examples/basic.
  • Building a Better Monorepo with TypeScript, Turborepo, or Nx
    1 project | dev.to | 11 Nov 2024
    Next, let’s create monorepo with Turborepo.
  • Rewriting Rust
    23 projects | news.ycombinator.com | 25 Sep 2024
    > Look at the dependency tree for a next

    Looks ok to me: https://npmgraph.js.org/?q=next

    Ironically, most of the dependencies are actually Rust crates used by swc and turbopack [1]. Try running cargo tree on either of those crates, it's enlightening to say the least. And of course, Node has a built in file watcher, and even the most popular third party package for file watching (Chokidar) has a single dependency [3].

    [1] https://github.com/vercel/turborepo/blob/main/Cargo.toml

    [2] https://github.com/swc-project/swc/blob/main/Cargo.toml

    [3] https://npmgraph.js.org/?q=chokidar

  • Learn how to build a monorepo in Next.js
    4 projects | dev.to | 8 Dec 2022
    Turborepo: Smart build system for JavaScript/TypeScript monorepos
  • Building a full-stack TypeScript application with Turborepo
    6 projects | dev.to | 30 Nov 2022
    We’ve only scratched the surface of what we can do with Turborepo. You can find more examples in the Turborepo examples directory on GitHub. Skill Recordings on GitHub is also another great resource that has been around since Turborepo was first released.
  • 10 Trending Github repositories / October, 27 2022
    9 projects | dev.to | 27 Oct 2022
    git clone https://github.com/vercel/turborepo.git
  • Component composition
    2 projects | /r/reactjs | 13 Oct 2022
    I use https://turborepo.org/ to facilitate my monorepo. Essentially it's a way of structuring your configs, UI; apps etc and you consume each like an internal package. I find benefits for this as the kinds of sites I make will generally have an internal app, an admin panel and a marketing site. I can write UI, config etc in one place and consume them over the three projects to keep everything consistent.
  • How I Monorepo
    5 projects | dev.to | 9 Oct 2022
    The latest addition to the Composer Suite monorepo, Turborepo optimizes monorepo workflows by caching build artifacts. This may sound a little abstract and boring, but what this actually means is that when you build something within your monorepo, Turborepo will make sure only the things that it depends on are rebuilt; everything else will be retrieved from a cache that either lives on your local computer, or a remote cache server. Adding Turborepo to the Composer Suite monorepo pretty much halved CI build times, but it was also a way to teach Vercel, which I use for hosting the various example apps in the repo, to only actually deploy the ones that have changed since their last deployment. And that's really cool!

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 turborepo and go you can also consider the following projects:

nx - An AI-first build platform that connects everything from your editor to CI. Helping you deliver fast, without breaking things.

zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

lerna - Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.

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

vite - Next generation frontend tooling. It's fast!

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).

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