2020-07-31 17:38:35 -04:00
Bubble Tea
==========
2020-01-15 16:58:41 -05:00
2020-07-29 17:15:41 -04:00
< p >
2020-10-05 13:25:34 -04:00
< img src = "https://stuff.charm.sh/bubbletea/bubbletea-github-header-simple.png" width = "313" alt = "Bubble Tea Title Treatment" > < br >
2020-10-24 02:40:36 -04:00
< a href = "https://github.com/charmbracelet/bubbletea/releases" > < img src = "https://img.shields.io/github/release/charmbracelet/bubbletea.svg" alt = "Latest Release" > < / a >
2020-07-29 17:15:41 -04:00
< a href = "https://pkg.go.dev/github.com/charmbracelet/bubbletea?tab=doc" > < img src = "https://godoc.org/github.com/golang/gddo?status.svg" alt = "GoDoc" > < / a >
2021-03-18 12:36:25 -04:00
< a href = "https://github.com/charmbracelet/bubbletea/actions" > < img src = "https://github.com/charmbracelet/bubbletea/workflows/build/badge.svg" alt = "Build Status" > < / a >
2020-07-29 17:15:41 -04:00
< / p >
2020-07-29 16:15:19 -04:00
The fun, functional and stateful way to build terminal apps. A Go framework
2020-09-28 18:30:02 -04:00
based on [The Elm Architecture][elm]. Bubble Tea is well-suited for simple and
2020-08-26 15:09:25 -04:00
complex terminal applications, either inline, full-window, or a mix of both.
2020-05-12 16:39:08 -04:00
2020-10-05 12:44:47 -04:00
< p >
2022-02-09 13:24:39 -05:00
< img src = "https://stuff.charm.sh/bubbletea/bubbletea-example.gif?0" width = "800" alt = "Bubble Tea Example" >
2020-10-05 12:44:47 -04:00
< / p >
2020-09-28 18:30:02 -04:00
Bubble Tea is in use in production and includes a number of features and
performance optimizations we’ ve added along the way. Among those is a standard
framerate-based renderer, a renderer for high-performance scrollable
regions which works alongside the main renderer, and mouse support.
2020-07-30 12:32:24 -04:00
2022-07-19 19:23:37 -04:00
## Getting Started
2020-01-15 16:58:41 -05:00
2022-07-19 19:23:37 -04:00
We recommend starting with the [basics tutorial][basics] followed by the
[commands tutorial][commands], both of which should give you a good
understanding of how things work.
2020-10-10 20:20:53 -04:00
2022-07-19 19:23:37 -04:00
There are a bunch of [examples][examples], too!
[basics]: https://github.com/charmbracelet/bubbletea/tree/master/tutorials/basics
[commands]: https://github.com/charmbracelet/bubbletea/tree/master/tutorials/commands
[documentation]: https://github.com/charmbracelet/bubbletea/tree/master/docs
[examples]: https://github.com/charmbracelet/bubbletea/tree/master/examples
## Components
For a bunch of basic user interface components check out [Bubbles][bubbles],
the official Bubble Tea component library.
2020-10-10 20:20:53 -04:00
< p >
< a href = "https://github.com/charmbracelet/bubbles" > < img src = "https://stuff.charm.sh/bubbles/bubbles-badge.png" width = "174" alt = "Bubbles Badge" > < / a >
< a href = "https://github.com/charmbracelet/bubbles" > < img src = "https://stuff.charm.sh/bubbles-examples/textinput.gif" width = "400" alt = "Text Input Example from Bubbles" > < / a >
< / p >
2022-07-19 19:23:37 -04:00
## Debugging
2020-08-26 14:58:17 -04:00
2022-07-19 19:23:37 -04:00
### Debugging with Delve
2022-02-25 14:27:05 -05:00
2022-04-03 15:53:08 -04:00
Since Bubble Tea apps assume control of stdin and stdout, you’ ll need to run
2022-02-25 14:27:05 -05:00
delve in headless mode and then connect to it:
```bash
# Start the debugger
$ dlv debug --headless .
API server listening at: 127.0.0.1:34241
# Connect to it from another terminal
$ dlv connect 127.0.0.1:34241
```
Note that the default port used will vary on your system and per run, so
actually watch out what address the first `dlv` run tells you to connect to.
2022-07-19 19:23:37 -04:00
### Logging Stuff
You can log to a debug file to print debug Bubble Tea applications. To do so,
include something like…
```go
if len(os.Getenv("DEBUG")) > 0 {
f, err := tea.LogToFile("debug.log", "debug")
if err != nil {
fmt.Println("fatal:", err)
os.Exit(1)
}
defer f.Close()
}
```
…before you start your Bubble Tea program. To see what’ s printed in real time,
2022-07-23 21:44:56 -04:00
run `tail -f debug.log` while you run your program in another window.
2022-07-19 19:23:37 -04:00
2021-04-14 15:16:24 -04:00
## Libraries we use with Bubble Tea
2021-04-14 16:08:25 -04:00
* [Bubbles][bubbles]: Common Bubble Tea components such as text inputs, viewports, spinners and so on
2021-08-02 13:01:52 -04:00
* [Lip Gloss][lipgloss]: Style, format and layout tools for terminal applications
* [Harmonica][harmonica]: A spring animation library for smooth, natural motion
2022-07-19 18:33:51 -04:00
* [BubbleZone][bubblezone]: Easy mouse event tracking for Bubble Tea components
2021-04-14 15:16:24 -04:00
* [Termenv][termenv]: Advanced ANSI styling for terminal applications
2021-04-14 16:08:25 -04:00
* [Reflow][reflow]: Advanced ANSI-aware methods for working with text
2021-04-14 15:16:24 -04:00
[bubbles]: https://github.com/charmbracelet/bubbles
[lipgloss]: https://github.com/charmbracelet/lipgloss
2021-08-02 13:01:52 -04:00
[harmonica]: https://github.com/charmbracelet/harmonica
2022-07-19 18:47:15 -04:00
[bubblezone]: https://github.com/lrstanley/bubblezone
2021-04-14 15:16:24 -04:00
[termenv]: https://github.com/muesli/termenv
[reflow]: https://github.com/muesli/reflow
2020-10-16 13:22:19 -04:00
## Bubble Tea in the Wild
2020-10-15 20:26:02 -04:00
For some Bubble Tea programs in production, see:
2022-02-25 14:08:15 -05:00
* [AT CLI ](https://github.com/daskycodes/at_cli ): a utility for executing AT Commands via serial port connections
2022-07-27 21:31:20 -04:00
* [Aztify ](https://github.com/Azure/aztfy ): bring Microsoft Azure resources under Terraform
2022-02-25 14:08:15 -05:00
* [Canard ](https://github.com/mrusme/canard ): an RSS client
2022-07-27 21:31:20 -04:00
* [charm ](https://github.com/charmbracelet/charm ): the official Charm user account manager
2022-02-25 14:08:15 -05:00
* [clidle ](https://github.com/ajeetdsouza/clidle ): a Wordle clone for your terminal
2022-07-27 21:31:20 -04:00
* [container-canary ](https://github.com/NVIDIA/container-canary ): a container validator
2022-07-17 07:55:58 -04:00
* [dns53 ](https://github.com/purpleclay/dns53 ): dynamic DNS with Amazon Route53. Expose your EC2 quickly, securely and privately
2022-02-25 14:59:40 -05:00
* [fm ](https://github.com/knipferrc/fm ): a terminal-based file manager
2022-07-27 21:31:20 -04:00
* [flapioca ](https://github.com/kbrgl/flapioca ): Flappy Bird on the CLI!
2022-07-29 10:55:29 -04:00
* [fztea ](https://github.com/jon4hz/fztea ): connect to your Flipper's UI over serial or make it accessible via SSH
2021-01-14 17:52:10 -05:00
* [fork-cleaner ](https://github.com/caarlos0/fork-cleaner ): cleans up old and inactive forks in your GitHub account
2022-02-25 14:08:15 -05:00
* [gambit ](https://github.com/maaslalani/gambit ): play chess in the terminal
* [gembro ](https://git.sr.ht/~rafael/gembro ): a mouse-driven Gemini browser
2022-05-11 21:53:41 -04:00
* [gh-b ](https://github.com/joaom00/gh-b ): GitHub CLI extension to easily manage your branches
2022-07-19 19:23:37 -04:00
* [gh-dash ](https://www.github.com/dlvhdr/gh-dash ): GitHub CLI extension to display a dashboard of PRs and issues
2021-01-15 12:36:08 -05:00
* [gitflow-toolkit ](https://github.com/mritd/gitflow-toolkit ): a GitFlow submission tool
2022-02-25 14:08:15 -05:00
* [Glow ](https://github.com/charmbracelet/glow ): a markdown reader, browser and online markdown stash
* [gocovsh ](https://github.com/orlangure/gocovsh ): explore Go coverage reports from the CLI
2021-03-08 21:05:41 -05:00
* [httpit ](https://github.com/gonetx/httpit ): a rapid http(s) benchmark tool
2022-02-25 14:08:15 -05:00
* [IDNT ](https://github.com/r-darwish/idnt ): batch software uninstaller
* [kboard ](https://github.com/CamiloGarciaLaRotta/kboard ): a typing game
2022-02-25 14:22:53 -05:00
* [mergestat ](https://github.com/mergestat/mergestat ): run SQL queries on git repositories
2022-02-25 14:08:15 -05:00
* [mc ](https://github.com/minio/mc ): the official [MinIO ](https://min.io ) client
2022-07-27 20:53:30 -04:00
* [pathos ](https://github.com/chip/pathos ): pathos - CLI for editing a PATH env variable
2022-02-25 14:22:53 -05:00
* [portal][portal]: securely send transfer between computers
* [redis-viewer ](https://github.com/SaltFishPr/redis-viewer ): browse Redis databases
2021-06-07 20:15:16 -04:00
* [Slides ](https://github.com/maaslalani/slides ): a markdown-based presentation tool
2022-02-25 14:22:53 -05:00
* [Soft Serve ](https://github.com/charmbracelet/soft-serve ): a command-line-first Git server that runs a TUI over SSH
2022-02-25 14:08:15 -05:00
* [StormForge Optimize Controller ](https://github.com/thestormforge/optimize-controller ): a tool for experimenting with application configurations in Kubernetes
* [STTG ](https://github.com/wille1101/sttg ): teletext client for SVT, Sweden’ s national public television station
2022-02-25 14:22:53 -05:00
* [sttr ](https://github.com/abhimanyu003/sttr ): run various text transformations
2022-02-25 14:08:15 -05:00
* [tasktimer ](https://github.com/caarlos0/tasktimer ): a dead-simple task timer
2022-01-11 04:22:59 -05:00
* [termdbms ](https://github.com/mathaou/termdbms ): a keyboard and mouse driven database browser
2022-02-25 14:08:15 -05:00
* [ticker ](https://github.com/achannarasappa/ticker ): a terminal stock watcher and stock position tracker
2022-02-25 14:22:53 -05:00
* [tran ](https://github.com/abdfnx/tran ): securely transfer stuff between computers (based on [portal][portal])
2022-02-25 14:08:15 -05:00
* [tz ](https://github.com/oz/tz ): an aid for scheduling across multiple time zones
2022-07-27 21:31:20 -04:00
* [ugm ](https://github.com/ariasmn/ugm ): a unix user and group browser
2022-02-25 14:08:15 -05:00
* [Typer ](https://github.com/maaslalani/typer ): a typing test
2022-02-09 13:27:39 -05:00
* [wishlist ](https://github.com/charmbracelet/wishlist ): an SSH directory
2020-10-15 20:26:02 -04:00
2022-02-25 14:22:53 -05:00
[portal]: https://github.com/ZinoKader/portal
2020-10-16 13:22:19 -04:00
## Feedback
2020-10-15 20:26:02 -04:00
We'd love to hear your thoughts on this tutorial. Feel free to drop us a note!
* [Twitter ](https://twitter.com/charmcli )
* [The Fediverse ](https://mastodon.technology/@charm )
2022-07-19 19:23:37 -04:00
* [Slack ](https://charm.sh/slack )
2020-10-15 20:26:02 -04:00
2020-04-27 11:43:11 -04:00
## Acknowledgments
2020-01-15 16:58:41 -05:00
2020-08-26 14:58:17 -04:00
Bubble Tea is based on the paradigms of [The Elm Architecture][elm] by Evan
2022-07-02 01:17:02 -04:00
Czaplicki et alia and the excellent [go-tea][gotea] by TJ Holowaychuk. It’ s
inspired by the many great [_Zeichenorientierte Benutzerschnittstellen_][zb]
of days past.
2020-01-15 16:58:41 -05:00
2020-01-15 23:40:50 -05:00
[elm]: https://guide.elm-lang.org/architecture/
2020-01-15 16:58:41 -05:00
[gotea]: https://github.com/tj/go-tea
2022-07-02 01:17:02 -04:00
[zb]: https://de.wikipedia.org/wiki/Zeichenorientierte_Benutzerschnittstelle
2020-01-15 16:58:41 -05:00
2020-01-24 15:05:25 -05:00
## License
2020-07-29 16:43:59 -04:00
[MIT ](https://github.com/charmbracelet/bubbletea/raw/master/LICENSE )
2020-01-25 21:40:14 -05:00
***
2020-10-20 10:16:06 -04:00
Part of [Charm ](https://charm.sh ).
2020-01-25 21:40:14 -05:00
2022-02-09 13:24:39 -05:00
< a href = "https://charm.sh/" > < img alt = "The Charm logo" src = "https://stuff.charm.sh/charm-badge.jpg" width = "400" > < / a >
2020-01-25 21:40:14 -05:00
2021-06-07 20:16:35 -04:00
Charm热爱开源 • Charm loves open source