Alternatives
Products that do what Go-TUI – A framework for building declarative terminal UIs in Go does
I've been building go-tui (https://go-tui.dev), a terminal UI framework for Go inspired by the templ framework for the web (https://templ.guide/). The syntax should be familiar to templ users and is quite different from other terminal frameworks like bubbletea. Instead of imperative widget manipulation or bubbletea's elm architecture, you write HTML-like syntax and Tailwind-style classes that can intermingle with regular Go code in a new .gsx filetype. Then you compile these files to type-safe Go using `tui generate`. At runtime there's a flexbox layout engine based…
- 1
- 2TA
This is my personal todo app, which I made a while back after the original https://xit.jotaen.net/ post. tuido is written in go, with the bubbletea tui framework. My daily workflow involves creating YYYY-MM-DD.md and taking notes, many of which are effectively low-level todos that fall below the threshold for more public or involved issue trackers. Problem was that these half-hazard todos weren't tracked at all. After seeing the [x]it spec, it seemed clear that a little tooling could fix this. I've been reasonably happy with it.
2022 · github.com
- 3NF
Over the past couple of months I've been working on a TUI framework heavily inspired by Flutter, written in Dart. The API is modeled after Flutter. StatefulComponent, setState(), Row, Column, Expanded, ListView. There have been some discussions about performance of TUIs recently, and I think Dart is actually a great language for writing TUIs in. It compiles down to fast native code, is cross-platform, and has great developer ergonomics. JIT compilation for development (which enables hot reload) and AOT compilation for production binaries. What's really cool is stateful hot reload. If you…
Feb 2026 · nocterm.dev
- 4

- 5AS
I have been using golang at work and personally for more than 2 years now. A problem i faced when I started and the problem new gophers even today is how to structure the project. Most (if not all) golang tutorials seem to be very simple and do not describe how to structure a large application. Following project is an attempt to Showcase a manageable project layout for services in golang. https://github.com/spy16/droplets This project is far from complete. Would like to hear some feedback from the community before continuing on this.
2018
- 6

- 7

- 8GA
What it does: A Postman/Insomnia-like TUI for building, sending, and organizing HTTP/GraphQL/gRPC/WebSocket requests. Supports saved collections stored as YAML/JSON files, environment variables, auth presets, response diffing, and request history. Why it's needed: This is the single largest gap in the Go TUI ecosystem. The abandoned wuzz (10.5k stars) proved massive demand for terminal HTTP inspection, but it's been dead for years. Posting (Python, ~6k stars) and ATAC (Rust, ~2k stars) are thriving alternatives in other languages. The Go options — gostman and go-gurl…
Feb 2026 · github.com
- 9DA
Hi there, I tried to build a CLI tool to edit and visualize Excel/CSV files directly in the terminal, I called it "dss". I did it for fun to tweak spreadsheet formulas without leaving my terminal or opening heavy GUI apps. It is an interactive editor of sheets with charts and formula engine diretly in TUI. The formula engine is handmaded but I'd like to improve it. I copied a lot from my previous Datacmd project and from Termdash repo. Hoping to receive some feedback.
Apr 2026 · github.com
- 10GN
I've created this library to make usage of Cobra (the famous Go CLI lib) more fluent and also make better use of Go generics when registering command flags. I'd appreciate feedback on the README and if you'd consider using such a wrapper. Also tell me if you think that fluent API reads well. If everything goes well, I'm planning to release a v1 soon! This depends on if I can implement a missing feature of elegantly defining mutually exclusive flags.
2025 · github.com
- 11GT
Hi everyone - Posting on HN for the very first time. I am working on an open-source project called Gmail-TUI that aims to replicate the Gmail Web-UI in a TUI-Environment. As of now, users can Login, navigate within this app and compose & send mail. App GIF (v0.2.0-Alpha): https://imgur.com/LGWmkLP Project Repo: https://github.com/dev-vaayen/Gmail-TUI/tree/main SMTP-Protocol in Golang: https://www.geeksforgeeks.org/sending-email-using-smtp-in-go... The Idea Behind This App Just a few days after I had installed Ubuntu, I lost the…
2024
- 12AT
Hi HN! I just released assistant-tui, a terminal user interface for OpenAI's Assistant API. If terminal is your thing, it can be a great way to test and evaluate the API and its results. It implements not only the API, but also all the infrastructure to make it work, including polling, local repository, and more. Feedbacks and stars are welcome! https://github.com/dalssoft/assistant-tui
2024 · github.com
- 13GA
Hi HN! I'm excited to share GoCard, a terminal-based spaced repetition system I built that uses plain Markdown files as its data source. I've always been frustrated with existing spaced repetition tools that lock my knowledge into proprietary formats or require constant internet access. As a developer who lives in terminals and text editors, I wanted something that: 1. Stores cards as plain text files I can edit with any editor 2. Works seamlessly with Git for versioning and sync 3. Runs in a terminal without distractions 4. Has first-class support for code snippets and programming concepts…
2025 · github.com
- 14GM
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
- 15GA
Built on top of templUI - https://templui.io - (OSS), which I also created. goilerplate handles auth, subscriptions, docs, etc. SQLite by default, Postgres optional. Polar integration for payments. Feedback welcome!
Nov 2025 · goilerplate.com
- 16AH
Recently, I found a long desired framework that treats the terminal via a DOM/CSS approach named Textual [https://textual.textualize.io]. In order to explore this framework I started developing a terminal based TUI RPN (styled in the aesthetic of a classic HP 15C pocket) calculator. So far this TUI RPN calculator has classic HP styled buttons, LCD display and some of the basic math operations. This is very much a W.I.P. Any engagement welcome.
2024 · github.com
- 17IV
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
- 18AD
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
- 19CM
With support for nested subcommands, global / local flags, help generation from godocs, typo suggestions, shell completion and more. Inspired by python-fire and powered by Cobra.
2023 · github.com
- 20JA
A WebRTC-native, audio-first conversational-AI framework for Go. Pipecat is great, and jargo is a port of it — the architecture and many design decisions are Pipecat's. But, I prefer Golang.
Jun 2026 · github.com
- 21ZA
I built this because Zig lacked a proper TUI framework. Inspired by Go's Bubble Tea/Lipgloss. Feedback welcome.
Feb 2026 · github.com
- 22TO
Learn how to write Rules Engines with CLIPS in your browser! I found the Tour of Go super useful when learning Go, so I went for something similar for evangelizing the awesomeness of CLIPS. A few things I'm proud of with this project: - No front-end frameworks - Compiled WASM binary; your code isn't sent to a back-end server - Code editor/syntax highlighter written from scratch (that I'm sure you'll find bugs in ;)) This is my first attempt at this, and I'd like to expand on it in the future. Let me know what you think! About CLIPS: CLIPS is a programming language useful for building…
2022 · ryjo.codes
- 23TW
Hi HN, This project is designed to take a TUI built with Textual, and turn it in to a web application. It can also do something similar with your shell or other terminal app. You could serve "htop" for example. There are other projects which do something similar. Textual Web takes a different approach, in that it doesn't need to run as a server. It should work as long as you can make an outgoing tcp/ip connection. I plan to expose more of the web API to Textual apps. The goal is to have a system to quickly create and deploy UIs with Python. These aren't going to replace web applications…
2023 · github.com
- 24PT
Hi HN, My name is Ravi Sojitra and i'm working on a Dev Tool product named DhiWise, that let you generate production ready source code(For Node.js,Laravel,Flutter,Kotlin,Swift) in few mins with ready to get synced in your GitHub/GitLab or Download. Let me explain like you're five. Imagine you want to bake a cake and you have all the raw materials you need such as flour, baking powder, eggs. Now, you give us those materials and we will bake you the ready-to-serve cake of your choice. With this product's context, with just minimal technology specific inputs, this builder is going to…
2021
Ranked by how close each launch is in meaning, then by votes. Refine with a description →