Go to file
Roi Martin fc12c654f2
Merge pull request #253 from tbouasli/patch-1
docs: removed dollar sign from scripts
2024-09-09 07:08:19 +02:00
_examples Rename *Gui.Execute() to *Gui.Update() 2017-08-19 00:13:30 +02:00
.gitignore Initial commit 2013-12-27 21:36:26 +01:00
AUTHORS Update AUTHORS 2016-11-13 20:46:12 +01:00
LICENSE Fix typo in LICENSE 2014-12-25 11:58:41 +01:00
README.md docs: removed dollar sign from scripts 2024-09-01 15:19:34 -03:00
attribute.go Full mouse support. Add mouse example. Make golint happy. 2016-01-23 16:07:42 +01:00
doc.go Rename *Gui.Execute() to *Gui.Update() 2017-08-19 00:13:30 +02:00
edit.go Do not move the cursor beyond EOF 2017-08-19 00:06:54 +02:00
escape.go Fix error handling in *escapeInterpreter.parseOne() 2017-02-12 15:50:38 +01:00
go.mod all: go modules 2021-08-14 19:15:08 +02:00
go.sum all: go modules 2021-08-14 19:15:08 +02:00
gui.go Minor syntax clean-ups 2017-08-20 00:28:06 +02:00
keybinding.go Add MouseRelease, MouseUp and MouseDown 2016-11-24 16:23:44 -05:00
view.go adds ViewBufferLines to View 2018-04-11 17:57:51 +02:00

README.md

GOCUI - Go Console User Interface

Go Reference

Minimalist Go package aimed at creating Console User Interfaces.

Features

  • Minimalist API.
  • Views (the "windows" in the GUI) implement the interface io.ReadWriter.
  • Support for overlapping views.
  • The GUI can be modified at runtime (concurrent-safe).
  • Global and view-level keybindings.
  • Mouse support.
  • Colored text.
  • Customizable edition mode.
  • Easy to build reusable widgets, complex layouts...

Installation

Execute:

go get github.com/jroimartin/gocui

Documentation

Execute:

go doc github.com/jroimartin/gocui

Or visit pkg.go.dev to read it online.

Example

package main

import (
	"fmt"
	"log"

	"github.com/jroimartin/gocui"
)

func main() {
	g, err := gocui.NewGui(gocui.OutputNormal)
	if err != nil {
		log.Panicln(err)
	}
	defer g.Close()

	g.SetManagerFunc(layout)

	if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
		log.Panicln(err)
	}

	if err := g.MainLoop(); err != nil && err != gocui.ErrQuit {
		log.Panicln(err)
	}
}

func layout(g *gocui.Gui) error {
	maxX, maxY := g.Size()
	if v, err := g.SetView("hello", maxX/2-7, maxY/2, maxX/2+7, maxY/2+2); err != nil {
		if err != gocui.ErrUnknownView {
			return err
		}
		fmt.Fprintln(v, "Hello world!")
	}
	return nil
}

func quit(g *gocui.Gui, v *gocui.View) error {
	return gocui.ErrQuit
}

Screenshots

r2cui

_examples/demo.go

_examples/dynamic.go

Projects using gocui

  • komanda-cli: IRC Client For Developers.
  • vuls: Agentless vulnerability scanner for Linux/FreeBSD.
  • wuzz: Interactive cli tool for HTTP inspection.
  • httplab: Interactive web server.
  • domainr: Tool that checks the availability of domains based on keywords.
  • gotime: Time tracker for projects and tasks.
  • claws: Interactive command line client for testing websockets.
  • terminews: Terminal based RSS reader.
  • diagram: Tool to convert ascii arts into hand drawn diagrams.
  • pody: CLI app to manage Pods in a Kubernetes cluster.
  • kubexp: Kubernetes client.
  • kcli: Tool for inspecting kafka topics/partitions/messages.
  • fac: git merge conflict resolver
  • jsonui: Interactive JSON explorer for your terminal.
  • cointop: Interactive terminal based UI application for tracking cryptocurrencies.

Note: if your project is not listed here, let us know! :)