Go TUI

Open-source Go projects categorized as TUI

Top 23 Go TUI Projects

  • dive

    A tool for exploring each layer in a docker image

  • Project mention: Show HN: Docker-phobia: Analyze Docker image size with a treemap | news.ycombinator.com | 2024-04-28

    Cool, gonna try this soon. Would be great to use in combination with Dive (https://github.com/wagoodman/dive)

  • bubbletea

    A powerful little TUI framework πŸ—

  • Project mention: Superfile – A fancy, petty terminal file manager | news.ycombinator.com | 2024-05-10

    Seems like they're using Bubble Tea, a Terminal UI framework for Go. I've heard very good things about it and have been meaning to check it out.

    https://github.com/charmbracelet/bubbletea

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • wtf

    The personal information dashboard for your terminal

  • Project mention: termui: Golang Terminal Dashboard | news.ycombinator.com | 2024-04-14

    Another option here, though it looks like releases have slowed considerably. https://github.com/wtfutil/wtf

  • duf

    Disk Usage/Free Utility - a better 'df' alternative

  • Project mention: Go: What We Got Right, What We Got Wrong | news.ycombinator.com | 2024-01-04

    Not sure these are really popular, but I cannot resist advertising a few utilities written in Go that I regularly use in my daily workflow:

    - gdu: a NCDU clone, much faster on SSD mounts [1]

    - duf: a `df` clone with a nicer interface [2]

    - massren: a `vidir` clone (simpler to use but with fewer options) [3]

    - gotop: a `top` clone [4]

    - micro: a nice TUI editor [5]

    Building this kind of tools in Go makes sense, as the executables are statically compiled and are thus easy to install on remote servers.

    [1]: https://github.com/dundee/gdu

    [2]: https://github.com/muesli/duf

    [3]: https://github.com/laurent22/massren

    [4]: https://github.com/xxxserxxx/gotop

    [5]: https://github.com/zyedidia/micro

  • termshark

    A terminal UI for tshark, inspired by Wireshark

  • up

    Ultimate Plumber is a tool for writing Linux pipes with instant live preview (by akavel)

  • Project mention: Up – The Ultimate Plumber | news.ycombinator.com | 2024-05-21
  • lipgloss

    Style definitions for nice terminal layouts πŸ‘„

  • Project mention: State of the Terminal | news.ycombinator.com | 2024-05-16

    "\033[31;1;4munderlines\033[0m" is (again) no worse than a stream of vertices or a stream of object code. Everything is a stream of bytes (well, a stream of bits anyway). Do you want CSS? Lipgloss is not too far off [0].

    I read your objection basically as "escape sequences and control codes are noisy garbage"; are you saying something more like "the functionality you can achieve with escape sequences and control codes is fundamentally limited"? If that's the case, I don't see how, especially in the context of a character-based display.

    [0]: https://github.com/charmbracelet/lipgloss?tab=readme-ov-file...

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • slack-term

    Slack client for your terminal

  • Project mention: A CEO's Guide to Emacs | news.ycombinator.com | 2024-01-11

    You can still find terminal interfaces for a lot of these things, including Slack: https://github.com/jpbruinsslot/slack-term. I don't use Emacs but I imagine you could integrate that somehow if you wanted to.

  • ticker

    Terminal stock ticker with live updates and position tracking

  • bubbles

    TUI components for Bubble Tea 🫧

  • Project mention: When creating console based applications how do you replicate the following realtime updates: | /r/golang | 2023-12-07

    I recommend looking at the charm libraries. Lip gloss https://github.com/charmbracelet/lipgloss can provide the styling and bubble tea can handle the screen updates and framework https://github.com/charmbracelet/bubbletea there is a premade progress bar component in bubbles library. https://github.com/charmbracelet/bubbles

  • pterm

    ✨ #PTerm is a modern Go module to easily beautify console output. Featuring charts, progressbars, tables, trees, text input, select menus and much more πŸš€ It's completely configurable and 100% cross-platform compatible.

  • viddy

    πŸ‘€ A modern watch command. Time machine and pager etc.

  • Project mention: Viddy: A Modern Watch Command | news.ycombinator.com | 2023-09-19
  • ali

    Generate HTTP load and plot the results in real-time

  • jira-cli

    πŸ”₯ Feature-rich interactive Jira command line.

  • Project mention: Ask HN: Alternative Jira UIs? | news.ycombinator.com | 2023-08-16

    I've heard good things about JiraCLI β†’ https://github.com/ankitpokhrel/jira-cli.

  • glamour

    Stylesheet-based markdown rendering for your CLI apps πŸ’‡πŸ»β€β™€οΈ

  • jqp

    A TUI playground to experiment with jq

  • 3mux

    Terminal multiplexer inspired by i3

  • Project mention: Ubuntu 24.10 to Default to Wayland for Nvidia Users | news.ycombinator.com | 2024-05-19
  • termenv

    Advanced ANSI style & color support for your terminal applications

  • Project mention: go playground code doesn't work locally? | /r/golang | 2023-06-02

    For example: https://github.com/muesli/termenv // Clear the visible portion of the terminal output := termenv.NewOutput(os.Stdout) output.ClearScreen()

  • termdbms

    A TUI for viewing and editing database files.

  • Project mention: Termdbms – A TUI for viewing and editing database files | news.ycombinator.com | 2023-12-23

    Don't use a Mac, but would add to readme if someone had the wherewithal

    https://github.com/mathaou/termdbms/issues/8

  • ov

    πŸŽ‘Feature-rich terminal-based text viewer. It is a so-called terminal pager.

  • Project mention: My last weeks GitHub contributions | dev.to | 2024-04-27

    Many code reviews Upgrade code to respect new conventions. #111 ccoVeille posted on Apr 13, 2024 go.mod refers to 1.17, so we can use os.ReadFile and os.WriteFile instead of ioutil.ReadFile and ioutil.WriteFile that are now deprecated. We should use errors.As since go 1.13 otherwise any wrapped errors won't be caught. View on GitHub Use JSONL format for New Line Delimited JSON #112 ccoVeille posted on Apr 13, 2024 https://en.wikipedia.org/wiki/JSON_streaming View on GitHub receiver cleanup #522 ccoVeille posted on Apr 05, 2024 Refactor to use consistent parserState receiver Clean unused receivers View on GitHub Fix test helpers #523 ccoVeille posted on Apr 05, 2024 Test helpers should use t.Helper() This way if an error occurs it would be reported outside the helper View on GitHub

  • gomuks

    A terminal based Matrix client written in Go.

  • mangal

    πŸ“– The most advanced (yet simple) cli manga downloader in the entire universe! Lua scrapers, export formats, anilist integration, fancy TUI and more!

  • amfora

    A fancy terminal browser for the Gemini protocol.

  • Project mention: The Right to Lie and Google’s β€œWeb Environment Integrity” | news.ycombinator.com | 2023-07-30

    Gemini is a joke. The main proponents like Drew Devault chuck a tantrum when browsers allow users to optionally show favicons https://github.com/makew0rld/amfora/issues/199

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Go TUI related posts

Index

What are some of the best open-source TUI projects in Go? This list will help you:

Project Stars
1 dive 43,873
2 bubbletea 24,581
3 wtf 15,488
4 duf 12,340
5 termshark 8,713
6 up 8,159
7 lipgloss 7,460
8 slack-term 6,382
9 ticker 4,836
10 bubbles 4,889
11 pterm 4,582
12 viddy 4,438
13 ali 3,643
14 jira-cli 3,651
15 glamour 2,169
16 jqp 2,042
17 3mux 1,803
18 termenv 1,653
19 termdbms 1,628
20 ov 1,337
21 gomuks 1,283
22 mangal 1,207
23 amfora 1,110

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com