Go-tty Simple tty utility Usage ```go tty, err := tty.Open() if err != nil { log.Fatal(err) } defer tty.Close() for { r, err := tty.ReadRune() if err != nil { log.Fatal(err) } // handle key event } ``` if you are on windows and want to display ANSI colors, use go-colorable.
go-tty is a tool in the Languages category of a tech stack.
No pros listed yet.
No cons listed yet.
What are some alternatives to go-tty?
Go packages for low-level interaction with the operating system.