mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
e3a0c6f15f
Original:
|
||
---|---|---|
.. | ||
example.ts | ||
mod.ts | ||
README.md | ||
test.ts |
colors
Is a basic console color module intended for Deno. It is inspired by chalk, kleur, and colors on npm.
Usage
The main modules exports several functions which can color the output to the console:
import { bgBlue, red, bold } from "https://deno.land/x/std/colors/mod.ts";
console.log(bgBlue(red(bold("Hello world!"))));
This module supports NO_COLOR
environmental variable disabling any coloring if NO_COLOR
is set.
TODO
-
Currently, it just assumes it is running in an environment that supports ANSI escape code terminal coloring. It should actually detect, specifically windows and adjust properly.
-
Test coverage is very basic at the moment.
Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.