enogu
v0.5.1
Published
Painting your terminal with colors
Downloads
5
Readme
enogu
enogu is a library for painting your terminal with colors.
Inspired by Deno standard library
@std/fmt/colors,
chalk and
picocolors.
// npm
import { red } from "enogu";
console.log(red("Hello, world!"));
// jsr
import { red } from "@ryu/enogu";
console.log(red("Hello, world!"));
Features
- Zero dependencies
- Support
NO_COLOR
environment variable - Comaptible with any JavaScript runtime, including Deno, Node.js and Bun
- Faster than Deno std library
@std/fmt/colors
- Compatible with @std/fmt/colors