36 stable releases (7 major)

8.0.0 May 8, 2024
7.4.0 May 6, 2024
7.3.1 Dec 30, 2023
6.1.5 Nov 8, 2023
1.1.2 Oct 17, 2022

#234 in Command-line interface

Download history 82/week @ 2024-02-19 7/week @ 2024-02-26 33/week @ 2024-03-11 13/week @ 2024-04-01 8/week @ 2024-04-22 292/week @ 2024-05-06

300 downloads per month

MIT license

28KB
573 lines

Cod

Cod is a lightweight, (almost) zero-dependency command-line drawing utility. It works much like a basic C library, where you call functions to produce effects on the screen, rather than use a struct or some fancy macro syntax. However, it provides several conveniences above the ordinary C lib:

  • Namespacing, i.e. cod::style::bold() and cod::color::with()
    • A prelude, imports all submodules
  • Closure-based styling, i.e. style::with::bold(|| {...})
  • Basic input gathering, i.e. read::key() or read::line()
    • Optional, behind feature crossterm
    • Enables (and exposes) a dependency on crossterm
  • Basic terminal operations (cursor style, raw mode, terminal size)
    • Also behind feature crossterm

There are some examples in the examples directory, but as cod aims to be as simple to use as possible, they aren't prioritized. Moreover, everything in cod is well-documented, so it's arguably easier to just look through the docs!

Note: most cod functions don't flush stdout, so if you run into issues, try that!

Bold and faint

You may notice that while there are separate functions for enabling bold and faint, they both share de::weight. That's because, true to ANSI form, terminals and VTE's can't agree on it, so we're stuck with only one way to disable both. That goes for both with::bold and with::faint as well!

Additionally, on some terminals, bold and faint are mutually exclusive. On some, like Alacritty, they can coexist only if the text is uncolored. In general, be careful when using both at the same time. You can use the bold-faint example to test your terminal.

Dependencies

~0–5.5MB