Caution: This is a personal project for building personal tools and may not work as expected.
A Go TUI component library built on tview for creating terminal applications with consistent design patterns.
- 15+ UI Components - Panels, modals, tables, forms, trees, tabs, and more
- 20+ Themes - Tokyo Night, Catppuccin, Dracula, Nord, Gruvbox, etc.
- Runtime Theme Switching - Press
Tto change themes on the fly - Vim-style Navigation -
j/kmovement,g/Gfor top/bottom - Data Binding - Two-way form and table binding with struct tags
- CLI Scaffolding -
jig new <name>to bootstrap projects
go get github.com/atterpac/jigpackage main
import (
"github.com/atterpac/jig/layout"
"github.com/atterpac/jig/theme"
)
func main() {
theme.SetTheme("tokyonight")
app := layout.NewApp("My App")
app.Run()
}Panels, Modals, Tables, Forms, Trees, Tabs, Text Fields, Checkboxes, Selects, Progress Bars, Splits, Splash Screens, Empty States, Key Hints
components/ # UI primitives
theme/ # Theming system
layout/ # App layout management
nav/ # Navigation (pages, breadcrumbs)
input/ # Key bindings, command bar
binding/ # Data binding utilities
recipes/ # Pre-built templates
MIT