Alternatives
Products that do what Monogo – Evolve your go workspace to a real monorepo does
Hi there, I've been working sporadically over the last six months on a go monorepo tool (0 config it just use go workspace and go convention). It’s basically like TurboRepo but without the task runner. The tool builds a dependency graph between packages, allowing you to do things similar to what you can do in TurboRepo, like "only test the packages and the packages that depend on them, compared to the main branch," or "only install dependencies for Package A and its dependencies," etc. I use native go tool to get dependencies and create dependency graph between the package.Nothing crazy but…
- 1

- 2DA
Late last year, I was digging into some dependency-related tech debt, and struggling with how long it takes to run pnpm's introspection commands like 'pnpm why' in a medium-size monorepo. So I started working on a simple static site generator that would let me view the output of these expensive commands all at once, to make problems clearly visible instead of requiring deep exploration one at a time. Once I had that working, I realized I had enough data to add ticket tracking. It uses the data it gathers from the package manager to keep Linear or GitHub issues updated. And by auto-assigning…
Apr 2026 · descriptinc.github.io
- 3

- 4
- 5

- 6

- 7PB
Hi HN - I’m Peter, here with Max (hmaxdml), and we’re building DBOS Go, an open-source Go library for durable workflows, backed by Postgres. https://github.com/dbos-inc/dbos-transact-golang DBOS workflows make your programs durable by automatically checkpointing their state to Postgres. If your program crashes or fails, all workflows seamlessly resume from their last completed step when your program restarts. This durability makes workflows useful for solving many different problems, including: - Operating an AI agent, or anything that connects to an unreliable or…
Sep 2025 · github.com
- 8AD
I'd like to share a project I've been working on for the past few months. It's a distributed workflow engine written entirely in Go. Some highlights: * Tasks are executed in a Docker container * Can run stand-alone or distributed * Highly extensible * Able to enforce limits (CPU/RAM) per task * Web UI Would love the get your feedback on it, and find out if this could be useful.
2023 · github.com
- 9DA
Mar 2026 · deeprepo.dev
- 10GG
Coming from the land of the mono-repo (ex-googler), I decided to embrace the multi-repo, plain-git style. Methought, “hey, submodules, what could possibly go wrong”. Well, how about everything: detached HEADs, impossibly tedious commit management, and just about everything else. "OKAY" I said, a simple Python script should be fine, right? Well, NO. It turns out to be more complex. So I thought "others have got this, right? My time in mono-repo land was long and someone will have solved this" — well, yeah NAH. I won't bore you (the longer, boring comparison is in the docs) but everything I…
Jul 2026
- 11BI
2019 · github.com
- 12GM
I built GoSMig for my own projects and open-sourced it in case it helps others. It’s a tiny generic library (no external deps except golang.org/x/term) for writing SQL migrations in Go with compile-time checks. It supports transactional and non-transactional migrations, rollback, status, version, and a small CLI handler so you can ship your own migration binary. Why another migrator? - Minimal API, no DSL or file layout to learn - Type-safe via Go generics - Works with database/sql and sqlx out of the box - Should work with any db library (or wrapper) that implements some…
Oct 2025 · github.com
- 13

- 14AS
Doors: Server-driven UI framework + runtime for building stateful, reactive web applications in Go. Some highlights: * Front-end framework capabilities in server-side Go. Reactive state primitives, dynamic routing, composable components. * No public API layer. No endpoint design needed, private temporal transport is handled under the hood. * Unified control flow. No context switch between back-end/front-end. * Integrated web stack. Bundle assets, build scripts, serve private files, automate CSP, and ship in one binary. How it works: Go server is UI runtime: web application runs on a…
Apr 2026 · github.com
- 15CU
Hi HN, I've been building CH-UI, an open-source ClickHouse workspace. Today I'm releasing v2, which is a complete rewrite from scratch. v1 was a React SPA served via Docker. v2 is a single Go binary with an embedded Svelte frontend — download, run, open browser. No Docker, no Node, no runtime dependencies. What it does: - Multi-tab SQL editor with autocomplete - Database/table explorer with data preview - Saved queries - Tunnel architecture: run `ch-ui server` on one machine and `ch-ui connect` next to your ClickHouse — secure WebSocket tunnel, no VPN needed - Self-update (`ch-ui…
Feb 2026 · ch-ui.com
- 16IB
Hi HN, I built a tool [1] that resolves breaking changes when you upgrade npm packages. I know keeping my dependencies updated is good hygiene but I really have no motivations to do them. The time to fix breaking changes then validate them makes the ROI lopsided. Automating these helps me reduce the barrier to a good habit. It works on typescript and tsx projects. BYOK (bring your own GPT-4 key) for the codegen. MIT license. How does it work? - Bumps the package version, builds your project, and then runs tsc over your project to understand what breaks - Uses ts-morph [2] to create an AST of…
2024 · github.com
- 17SA
Hey HN, Ivan here We just shipped the new web version of Sourcewizard — this time it’s not installing code, planning instead the entire integration so it works on the first try. Here's how it works: - Connect your repo - Pick any service eg: Sentry, Statsig, PostHog, Resend, Clerk - Sourcewizard deep-scans your codebase, figures out your architecture + workflows - Asks 3-6 questions about how you want to use the integration specifically in your codebase - Returns out a personalized plan: ready-to-paste prompt for Claude/Cursor We made this because we kept fighting with cursor when doing…
Nov 2025 · github.com
- 18GB
Apr 2026 · goblin.run
- 19AW
I've spent the past couple of weeks building a Wasm-to-Go translator. It supports a subset of Wasm useful enough to translate SQLite into 600k LoC (~20 MiB) of Go code. It already passes all of my Go SQLite driver's tests across the 20 platforms I support. Performance compared to https://wazero.io/ is a bit of a mixed bag: code that frequently crosses the Go-Wasm boundary improves, but code that spends most of its time in "Wasm land" doesn't. There's probably room for improvement (I'd love to hear your ideas), but this is also a testament to how good the wazero AOT compiler…
Feb 2026 · github.com
- 20IV
Hey HN, As most of you (I think?), I cannot learn something without having a project, on the side, to implement what I’ve just learned. Recode is the project that I've used to learn Go. It lets you create a development environment in your cloud provider account easily. You can think of it as a desktop version of Gitpod / Coder / GitHub Codespaces less polished and with less features but 100% free and open-source. At the time of writing, it only works with Visual Studio Code and AWS. In order to let you configure your development environments easily, I’ve chosen to use Docker with…
2022 · github.com
- 21
AI products on web & mobile from one Next.js + Expo monorepo
Jun 2026 · react-native-next-theme-web.vercel.app
- 22AC
Since I started Swift development Carthage became my goto solution to build project dependencies due to it's simplicity, the only issue with Carthage is that if you use anything else other then GitHub you don't have the ability to save built dependencies so you end up building everything from source, this is fine if you have a couple of dependencies but when the number of dependencies starts to grow you can spend 15-20 minute waiting for Carthage to build it's dependencies.. RomeBuild goes around this by using carthage to build and archive dependencies and then save them on a very…
2016
- 23CM
Shameless plug for the functionality my team shipped to beta just before Christmas. For context, Forge is Atlassian's product extensibility framework that lets you write your own plugins (for lack of a better word) for our cloud SaaS products: https://developer.atlassian.com/platform/forge/ Coming up in a few weeks from another of my teams will be a feature we call "Dynamic Pipelines" which will let you use a similar Forge lambda function to mutate/generate Bitbucket Pipelines workflows at runtime.
2024 · bitbucket.org
- 24

Ranked by how close each launch is in meaning, then by votes. Refine with a description →