Skip to content

ryuapp/enogu

Repository files navigation

enogu

npm deno.land/x jsr

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