Cliux - Styled terminal output made simple (original) (raw)
December 4, 2025, 11:25am 1
cliux is a lightweight go package for styling terminal output — no TUI required. It’s a toolkit for making CLI output look clean, expressive, and readable using structured components.
Features
Boxed— bordered containers with titles and contentSection— titled blocks with horizontal dividersDivider— customizable horizontal lines
Example
package main
import (
"github.com/Pjdur/go_cliux"
)
func main() {
cliux.Boxed("Google made Go", "Cliux", 40)
cliux.Section("Cliux", "Go is made by Google", 30)
cliux.Divider("-", 25)
}
Output:
Links
Any feedback, ideas, or contributions are welcome!
