termdash alternatives and similar packages
Based on the "Advanced Console UIs" category.
Alternatively, view termdash alternatives based on common mentions on social networks and blogs.
-
termui
Go terminal dashboard based on termbox-go and inspired by blessed-contrib. -
Rich Interactive Widgets for Terminal UIs
Rich interactive widgets for terminal-based UIs written in Go -
termbox-go
Termbox is a library for creating cross-platform text-based interfaces. -
go-prompt
Building a powerful interactive prompt in Go, inspired by python-prompt-toolkit. -
tcell
Tcell is an alternate terminal package, similar in some ways to termbox, but better in others. -
uiprogress
A flexible library to render progress bars in terminal applications. -
asciigraph
Go package to make lightweight ASCII line graph ╭┈╯ in command line apps with no other dependencies. -
pterm
A library to beautify console output on every platform with many combinable components. -
uitable
A library to improve readability in terminal apps using tabular data. -
termtables
A Go port of the Ruby library terminal-tables for simple ASCII table generation as well as providing markdown and HTML output -
tabular
Print ASCII tables from command line utilities without the need to pass large sets of data to the API. -
yacspin
Yet Another CLi Spinner package, for working with terminal spinners. -
ctc
The non-invasive cross-platform terminal color library does not need to modify the Print method. -
go-ataman
Go library for rendering ANSI colored text templates in terminals.
Scout APM - Leading-edge performance monitoring starting at $39/month
Do you think we are missing an alternative of termdash or a related project?
Popular Comparisons
README
Termdash is a cross-platform customizable terminal based dashboard.
[](termdashdemo/termdashdemo.go)
The feature set is inspired by the gizak/termui project, which in turn was inspired by yaronn/blessed-contrib.
This rewrite focuses on code readability, maintainability and testability, see the [design goals](doc/design_goals.md). It aims to achieve the following [requirements](doc/requirements.md). See the [high-level design](doc/hld.md) for more details.
Public API and status
The public API surface is documented in the wiki.
Private packages can be identified by the presence of the /private/ directory in their import path. Stability of the private packages isn't guaranteed and changes won't be backward compatible.
There might still be breaking changes to the public API, at least until the project reaches version 1.0.0. Any breaking changes will be published in the [changelog](CHANGELOG.md).
Current feature set
- Full support for terminal window resizing throughout the infrastructure.
- Customizable layout, widget placement, borders, margins, padding, colors, etc.
- Dynamic layout changes at runtime.
- Binary tree and Grid forms of setting up the layout.
- Focusable containers and widgets.
- Processing of keyboard and mouse events.
- Periodic and event driven screen redraw.
- A library of widgets, see below.
- UTF-8 for all text elements.
- Drawing primitives (Go functions) for widget development with character and sub-character resolution.
Installation
To install this library, run the following:
go get -u github.com/mum4k/termdash
Usage
The usage of most of these elements is demonstrated in [termdashdemo.go](termdashdemo/termdashdemo.go). To execute the demo:
go run github.com/mum4k/termdash/termdashdemo/termdashdemo.go
Documentation
Please refer to the Termdash wiki for all documentation and resources.
Implemented Widgets
The Button
Allows users to interact with the application, each button press runs a callback function. Run the [buttondemo](widgets/button/buttondemo/buttondemo.go).
go run github.com/mum4k/termdash/widgets/button/buttondemo/buttondemo.go
[](widgets/button/buttondemo/buttondemo.go)
The TextInput
Allows users to interact with the application by entering, editing and submitting text data. Run the [textinputdemo](widgets/textinput/textinputdemo/textinputdemo.go).
go run github.com/mum4k/termdash/widgets/textinput/textinputdemo/textinputdemo.go
[](widgets/textinput/textinputdemo/textinputdemo.go)
The Gauge
Displays the progress of an operation. Run the [gaugedemo](widgets/gauge/gaugedemo/gaugedemo.go).
go run github.com/mum4k/termdash/widgets/gauge/gaugedemo/gaugedemo.go
[](widgets/gauge/gaugedemo/gaugedemo.go)
The Donut
Visualizes progress of an operation as a partial or a complete donut. Run the [donutdemo](widgets/donut/donutdemo/donutdemo.go).
go run github.com/mum4k/termdash/widgets/donut/donutdemo/donutdemo.go
[](widgets/donut/donutdemo/donutdemo.go)
The Text
Displays text content, supports trimming and scrolling of content. Run the [textdemo](widgets/text/textdemo/textdemo.go).
go run github.com/mum4k/termdash/widgets/text/textdemo/textdemo.go
[](widgets/text/textdemo/textdemo.go)
The SparkLine
Draws a graph showing a series of values as vertical bars. The bars can have sub-cell height. Run the [sparklinedemo](widgets/sparkline/sparklinedemo/sparklinedemo.go).
go run github.com/mum4k/termdash/widgets/sparkline/sparklinedemo/sparklinedemo.go
[](widgets/sparkline/sparklinedemo/sparklinedemo.go)
The BarChart
Displays multiple bars showing relative ratios of values. Run the [barchartdemo](widgets/barchart/barchartdemo/barchartdemo.go).
go run github.com/mum4k/termdash/widgets/barchart/barchartdemo/barchartdemo.go
[](widgets/barchart/barchartdemo/barchartdemo.go)
The LineChart
Displays series of values on a line chart, supports zoom triggered by mouse events. Run the [linechartdemo](widgets/linechart/linechartdemo/linechartdemo.go).
go run github.com/mum4k/termdash/widgets/linechart/linechartdemo/linechartdemo.go
[](widgets/linechart/linechartdemo/linechartdemo.go)
The SegmentDisplay
Displays text by simulating a 16-segment display. Run the [segmentdisplaydemo](widgets/segmentdisplay/segmentdisplaydemo/segmentdisplaydemo.go).
go run github.com/mum4k/termdash/widgets/segmentdisplay/segmentdisplaydemo/segmentdisplaydemo.go
[](widgets/segmentdisplay/segmentdisplaydemo/segmentdisplaydemo.go)
Contributing
If you are willing to contribute, improve the infrastructure or develop a widget, first of all Thank You! Your help is appreciated.
Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines related to the Google's CLA, and code review requirements.
As stated above the primary goal of this project is to develop readable, well designed code, the functionality and efficiency come second. This is achieved through detailed code reviews, design discussions and following of the [design guidelines](doc/design_guidelines.md). Please familiarize yourself with these before contributing.
If you're developing a new widget, please see the [widget development](doc/widget_development.md) section.
Termdash uses this branching model. When you fork the repository, base your changes off the devel branch and the pull request should merge it back to the devel branch. Commits to the master branch are limited to releases, major bug fixes and documentation updates.
Similar projects in Go
Projects using Termdash
- datadash: Visualize streaming or tabular data inside the terminal.
- grafterm: Metrics dashboards visualization on the terminal.
- perfstat: Analyze and show tips about possible bottlenecks in Linux systems.
- gex: Cosmos SDK explorer in-terminal.
Disclaimer
This is not an official Google product.
*Note that all licence references and agreements mentioned in the termdash README section above
are relevant to that project's source code only.