Remix.run Logo
Ratatui – App Showcase(ratatui.rs)
140 points by AbuAssar 4 hours ago | 57 comments
nhatcher 4 minutes ago | parent | next [-]

(shameless plug) I don't know if anyone would be interested in taking this but I have what I think is a really nice project. Integrating this;

https://github.com/ironcalc/TironCalc

Into the main repo :

https://github.com/ironcalc/ironcalc

Now, I'm not 100% convinced ratatui is the way to go after seeing what the folks of Microsoft did with edit.

Anyhow, I think TironCalc is a great open source project to work with Rust and Ratatui.

godelski 2 hours ago | parent | prev | next [-]

I'm really waiting for the TUI web browser. That would let me live completely in the terminal.

Is anyone working on this?

With the speed terminals are and support for graphics through things like sixel and shaders I'd love to have a browser even if I couldn't do videos. Even if it was like viewing most pages in reader mode.

I'm not sure some big companies would be happy about that though since it likely would mean you could do things like ad blocking more easily. But maybe you could get them on board if you pitched it as a browser for LLMs. Something something it's a native interface for them. ;)

I know there's some browsers but things like W3M, Lynx, or *links* are... rough... definitely not of the quality we're seeing elsewhere in the current TUI revolution.

awesomeusername 2 hours ago | parent | next [-]

Browsh [0] - it runs firefox headless, and renders everything to ascii in the terminal

It's glorious

[0] https://www.brow.sh/

be_erik 2 hours ago | parent | prev | next [-]

I use this one pretty often. It’s great. https://chawan.net/

godelski an hour ago | parent [-]

This actually looks pretty reasonable. Thanks! I'll definitely be giving it a try

fruitworks 2 hours ago | parent | prev [-]

the cursive tui library does some html rendering

https://sr.ht/~ireas/cursive-markup-rs/

the whole cursive library strikes me as very html-like in layout

omarvanez 3 hours ago | parent | prev | next [-]

I've seen lots of TUIs lately, why is that? What is the renewed interest?

The only places I know of is Awesome TUIs [0] and terminaltrove [1]

I can also see that Ratatui has an awesome list too [2].

[0] https://github.com/rothgar/awesome-tuis

[1] https://terminaltrove.com/

[2] https://github.com/ratatui-org/awesome-ratatui

genidoi 3 hours ago | parent | next [-]

TUI libraries have sufficiently abstracted away the low-level quirks of terminal rendering that the terminal has become something like a canvas[0] available in the IDE with no extensions. This is quite a nice DevX if you want to display the state of an app that does something to data, without writing the necessary plumbing to pipe that data to a browser and render it.

[0] https://github.com/NimbleMarkets/ntcharts/blob/main/examples...

flomo an hour ago | parent | next [-]

The low-level terminal stuff is still grody as hell. Years ago, HN had some blogposts from someone who was rethinking the whole stack, but I dunno what happened to that project. If people really like TUIs, eventually they're going to stop doing the 1980s throback stuff.

wonger_ 35 minutes ago | parent [-]

This series? https://arcan-fe.com/2025/01/27/sunsetting-cursed-terminal-e...

eschaton 3 hours ago | parent | prev [-]

They did this in the 1970s and 1980s too, then they were called “forms libraries” but were often full application frameworks in ways that would be familiar to modern developers of native graphical apps.

laserbeam 3 hours ago | parent | prev | next [-]

> What is the renewed interest?

We just don’t have good desktop GUI platforms anymore. Qt and GTK are massive beasts, Windows changes theirs every 4 years (and no one wants to be tied to a single platform anyway), we don’t want to deal with Electron, and writing your own GUI from scratch is hard.

Terminals just got good lately and it’s way easier to make something higher quality in them than as a GUI. It’s just too hard to make a good small desktop app.

It’s the same reason why it’s easier to make something look great with LEGO than if you want to mold clay. I’d also wager that devs today on average know more about good UX than devs did back in the 80s when clunky terminal apps used to be made.

dualogy an hour ago | parent [-]

Godot is neat for personal tool-making where I just need a small gui with basic controls and can express the whole proggie in just GdScript (API has sufficient OS interactions for most needs), I just whip it out for those when I otherwise don't really use it anymore, just keeping it around for that. Stuff like that: https://postimg.cc/VJc0pWbB

webnrrd2k 3 hours ago | parent | prev | next [-]

I think that a lot of people here at HN have had bad web interfaces and GUIs inflicted on them for a long time, that a TUI is a welcome change and a big improvement. TUIs are limited, which make it hard to create great interfaces; but those limits also make it hard to create really bad interfaces. Also the TUI is genuinely good at simple-to-moderate complexity software. For an example, try out Midnight Commander.

travisgriggs 2 hours ago | parent | prev | next [-]

> What is the renewed interest?

For me, often, it’s an escape for a GUI world taken over by out-of-control “design” tenets. I value good Ux design concerns, but often working with designers lately feels bureaucratic, at times cargo culting, and overly spacious.

It’s like a graphical form of “I didn’t have time to give you a short answer, so I gave you a long one instead”. TUIs force a paucity that often makes for a nice information/pixels ratio.

alwillis 2 hours ago | parent | prev | next [-]

> I've seen lots of TUIs lately, why is that? What is the renewed interest?

A few reasons:

- for the most part TUI apps are cross-platform: macOS, Linux, BSD, Windows

- they cut down on context switching. If you're already in the terminal, you shouldn't have to switch to a GUI app to check on something.

- Today's terminal emulators—Ghostty, WezTerm, Kitty, iTerm, Alacrity, etc.—are fast and capable with GPU acceleration, 24-bit color support running on high resolution displays. It makes for a compelling platform to code for.

- Anecdotally lots of developers are spending less time in IDEs and more time in the terminal using Claude Code, Gemini CLI, Codex, etc.

lynndotpy 3 hours ago | parent | prev | next [-]

In addition to other comments, it's the only real way to make a usable GUI-like experience over SSH.

vostok 3 hours ago | parent | next [-]

I've generally had good experiences with the various compressed X11-like tools. One example is x2go, but there are a few.

fragmede 2 hours ago | parent [-]

oh man, I haven't thought about xpra in a while! Xpra was a layer of indirection between X clients and X server so you could ssh in, run eg firefox, disconnect, and then reconnect and pick up Firefox where you left it.

MangoToupe 2 hours ago | parent | prev [-]

You can also serve a window server over ssh

Szpadel an hour ago | parent | prev | next [-]

i think this might be caused by codex. it's open source, many people use it and it uses ratatui. People check how it is implemented and discover ratatui.

I believe this might be current most popular application using this library.

I'm surprised it isn't included in this showcase

mock-possum 11 minutes ago | parent [-]

Or Claude. There are more than a few developers on my team that prefer terminal interface for their codegen chatbots.

tptacek 2 hours ago | parent | prev | next [-]

High-level languages that compile to single binaries, and very good TUI frameworks (maybe inspired by Python Textual?) for them.

CSSer 3 hours ago | parent | prev | next [-]

That's a big question. I think TUIs are great for glue processes, and it doesn't hurt when they look pretty. They're also excellent first projects with composable interfaces. Shell code is such a pain. It's quick and dirty, but there are a lot of footguns. The main challenge is reducing the friction of making a TUI to the point where it's easy to execute an idea, and a lot of frameworks do this really well. Add the proliferation of LLMs on top, and maybe that could explain it?

DC-3 3 hours ago | parent | prev | next [-]

The terminal remains an extremely compelling computing environment in spite of its limitations and fifty years of technical debt. As anachronistic as arcane escape codes and box drawing characters seem in $CURRENT_YEAR, the fact remains that nothing has arisen to fill its niche.

orbital-decay 3 hours ago | parent | prev | next [-]

They're easier to program and seamlessly integrate into the terminal. That's basically it, other than that they're worse than normal GUIs. Also, GUI frameworks aren't that mature in Rust in particular.

positron26 2 hours ago | parent | prev | next [-]

Unrelated to the article, a lot of my millennials could see web and then mobile coming, focused on web & mobile, and as a result just weren't really participating in C and C++ development. We used terminal applications leftover from peak GNU.

When Rust came along and presented a career opportunity, terminal apps was a great way to get into it and filled a gap in a lot of people's skill sets. Even when building GUI apps in Rust, your first entry point is a CLI usually.

We took our UX thinking from web & mobile and remixed it with Rust and new ideas came out. Turns out "If it aint broke don't fix it" for two decades can build up a lot of evolutionary pressure.

nurettin 2 hours ago | parent | prev | next [-]

I don't care much about forms and windows in the command line (I've had enough of turbo vision back in the 90s), but I don't think I am alone in wanting to see some progress bars and stats for long running processes. So 2% of these libraries is actually pretty useful.

morkalork 3 hours ago | parent | prev [-]

IMO it's like seeing kids bust out disposable kodak cameras at the bar: generational nostalgia

baq an hour ago | parent | next [-]

TUIs being designed by engineers for engineers make them rather timeless. Extra points for being keyboard-first: lots of modern GUI tools don’t even consider the keyboard for anything other than text input, to the point that even tab order is broken, if it works at all, or the escape key closes multiple stacked modal windows, or enter doesn’t submit the dialog, or…

backscratches 44 minutes ago | parent | prev [-]

TUIs work better than GUIs. So much more powerful with so many less resources.

discoinverno 17 minutes ago | parent | prev | next [-]

Shameless plug of my TUI game, also built with Ratatui

https://github.com/ricott1/rebels-in-the-sky

dkdcio 3 hours ago | parent | prev | next [-]

the title of this post is odd? it’s a showcase of TUI applications built with this Rust crate — which I am hearing about for the first time, and am interested in. I was expecting a blog post on why Rust is experiencing a TUI revolution or something

wrs 3 hours ago | parent | next [-]

I think they're saying this crate is why Rust is experiencing a TUI revolution.

Charm would probably say the same for Go.

qudat 3 hours ago | parent [-]

Charm was my introduction into the world of ssh apps which prompted me to create https://pico.sh

SSH apps serve a similar UX to web apps which I just think is a great idea for many use cases. Needing to install a cli tool just to upload some files is tedious when you can just use rsync, sftp, piping, or even sshfs

kstrauser 23 minutes ago | parent [-]

What’s an SSH app vs a terminal app?

tomhow 2 hours ago | parent | prev | next [-]

We've updated the title.

Submitters, please remember this from the guidelines:

... please use the original title, unless it is misleading or linkbait; don't editorialize.

airstrike 3 hours ago | parent | prev | next [-]

ratatui has been around for quite a bit. it's what I'll reach out for if I need semi-complex TUIs in Rust fwiw

dkdcio 3 hours ago | parent | prev [-]

I am also now curious about alternatives/what differentiates this crate

RustSupremacist 2 hours ago | parent | prev | next [-]

People keep asking why TUIs in Rust and the answer is because the GUI situation in Rust is dreadful: https://www.boringcactus.com/2025/04/13/2025-survey-of-rust-...

Rust is simply not meant for GUI-based data design but I still want Qt in Rust. That's it. Not QML or Slint. No markup at all. None of the immediate mode things. No other languages. Definitely not GTK. I'm worried it will never happen for Rust and it will be such a missed opportunity.

goku12 an hour ago | parent | next [-]

You basically preempted nearly every single option, including an incumbent one. I don't believe it's fair to judge Rust based on its compatibility with Qt alone - something written in C++. Nothing against C++, but it's harder to get C++ and Rust to work together. You haven't addressed Iced yet, though going by your requirements, you're unlikely to be satisfied by it as well. Iced is not there yet, but it is the native GUI toolkit of the Cosmic desktop.

dancemethis an hour ago | parent | prev [-]

I kept forgetting Narrator is a Windows program, and the post read like the author was referring to the "Narrator voice in their head" while testing the UIs.

It made the post more amusing, actually. I sighed when I saw "Windows Narrator" suddenly.

CSSer 3 hours ago | parent | prev | next [-]

Some of the most interesting projects here have the worst installation stories.It's sort of tilting at windmills to not acknowledge that people are going to mostly install through package managers for their platform by advertising it as such. I'm not suggesting there's anything wrong with building from source. On the contrary, I think it's fantastic as many targets are supported here as there are! I think it's a shame more people aren't discovering them is all.

AceJohnny2 2 hours ago | parent [-]

Rust, following Go's footsteps, has made it very easy to distribute-and-compile from source. They've taken all the pain out of the compiling-from-source pipeline, through "go build" or "cargo build"

Meanwhile, distributions sometimes maintain their plodding rate at package updates (usually handled by distribution volunteers, not the original program's developers), which was developed in an era when building from source was a tedious process where the distribution volunteers provided value.

In effect, build-from-source has taken over "just use the distribution package".

CSSer 28 minutes ago | parent [-]

Okay, but where do you put it? I mean, yes, I know there's /usr/local/bin and /opt/bin, but why do I have to compile then mv it myself? It's a small paper cut. Does cargo or go have a global build command? That would be a nice all-in-one. And why should I have to download the source code if, honestly, I don't care as long as it works? Nah, I don't think build from source has taken over at all. It's 2025 and I use a package manager (or three) on every major operating system across multiple languages. It's because, as a vendor experience, I can one-line and use just about anything.

mbm 2 hours ago | parent | prev | next [-]

Ratatui is awesome! Just built a little chat client with it, tons of fun.

https://terma.mattmay.dev/

siavosh 3 hours ago | parent | prev | next [-]

What is the best / most popular / user friendly terminal http client I can replace postman with. Has a history I can search, save favorites, secure etc.

bitexploder 3 hours ago | parent | next [-]

I like smaller more focused tools on the terminal. You can make these all work together pretty reasonably with a little glue. Hurl, mitmproxy, httpie with http-prompt. I tend to prefer mitmproxy sessions and massaging that with Python/curl as needed for repeating and tweaking. User friendly is relative, but these tools work well. Python for tweaking http streams in mitmproxy is powerful and rather friendly for what you get in return. Mitmproxy lets you easily save flows with a bit of Puthon glue to output httpie commands giving history, and you can save mitmproxy sessions.

seabrookmx 3 hours ago | parent | prev | next [-]

I also have this question!

I starred Posting[1] but haven't yet got around to trying it.

[1]: https://news.ycombinator.com/item?id=40926211

Edit: here's another one: https://github.com/LucasPickering/slumber

tcoff91 3 hours ago | parent | prev | next [-]

Kulala nvim plugin or emacs rest client

esafak 2 hours ago | parent | prev | next [-]

xh has sessions. https://github.com/ducaale/xh

esseph 2 hours ago | parent | prev [-]

https://posting.sh/

nullbyte808 3 hours ago | parent | prev | next [-]

Very dope. I really like dua as my mac only has 256 GB.

ModernMech 3 hours ago | parent | prev | next [-]

Ratatui is neat but the way it's architected, you need to take on third party dependencies for each individual widget. And we're talking basic things like spinners, checkboxes, text areas, etc. -- there aren't too many widgets built into ratatui itself. I didn't like the idea of taking all that on so instead I went with something more handrolled.

renewiltord 2 hours ago | parent | prev | next [-]

Oh good collection. This is good. Found lots of good tools here.

MangoToupe 3 hours ago | parent | prev [-]

Not only is the language irrelevant, but anyone pimping vt100 as a ui should be shot on site. If you must use the terminal, use bash. If you must make a ui use a proper ui!

rireads an hour ago | parent [-]

Why do you think there is not a sweetspot between cli and gui?