Socket
Socket
Sign inDemoInstall

cli-color

Package Overview
Dependencies
13
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cli-color

Colors, formatting and other tools for the console


Version published
Weekly downloads
3.3M
decreased by-4.79%
Maintainers
1
Install size
1.16 MB
Created
Weekly downloads
 

Package description

What is cli-color?

The cli-color npm package is a library for adding color and formatting to text in Node.js command line applications. It provides a simple API to style strings that appear in the terminal, making it easier to produce visually distinct and organized output.

What are cli-color's main functionalities?

Text coloring

This feature allows you to change the color of the text output in the terminal. The example shows how to make text appear in red.

const clc = require('cli-color');
console.log(clc.red('This text is red'));

Text formatting

This feature enables text formatting such as making text bold, underlined, etc. The example demonstrates how to make text bold.

const clc = require('cli-color');
console.log(clc.bold('This text is bold'));

Background coloring

This feature allows you to set the background color of the text. The example shows white text on a blue background.

const clc = require('cli-color');
console.log(clc.bgBlue.white('White text on blue background'));

Other packages similar to cli-color

Readme

Source

cli-color

Yet another colors and formatting for the console solution

Colors, formatting and other goodies for the console. This package won't mess with built-ins and provides neat way to predefine formatting patterns, see below.

Installation

$ npm install cli-color

Usage

Usage:

var clc = require('cli-color');

Output colored text:

console.log(clc.red('Text in red'));

Styles can be mixed:

console.log(clc.red.bgWhite.underline('Underlined red text on white background.'));

Styled text can be mixed with unstyled:

console.log(clc.red('red') + ' plain ' + clc.blue('blue'));

Best way is to predefine needed stylings and then use it:

var error = clc.red.bold;
var warn = clc.yellow;
var notice = clc.blue;

console.log(error('Error!'));
console.log(warn('Warning'));
console.log(notice('Notice'));

Supported are all ANSI colors and styles:

Styles

Styles will display correctly if font used in your console supports them.

  • bold
  • italic
  • underline
  • blink
  • inverse
  • strike
Colors
ForegroundBackground
blackbgBlack
redbgRed
greenbgGreen
yellowbgYellow
bluebgBlue
magentabgMagenta
cyanbgCyan
whitebgWhite
Bright variants
ForegroundBackground
blackBrightbgBlackBright
redBrightbgRedBright
greenBrightbgGreenBright
yellowBrightbgYellowBright
blueBrightbgBlueBright
magentaBrightbgMagentaBright
cyanBrightbgCyanBright
whiteBrightbgWhiteBright
xTerm colors (256 colors table)

Not supported on Windows and some terminals. However if used in not supported environment, the closest color from basic (16 colors) palette is chosen.

Usage:

var msg = clc.xterm(202).bgXterm(236);
console.log(msg('Orange text on dark gray background'));

Color table:

01234567
89101112131415
161718192021
222324252627
282930313233
343536373839
404142434445
464748495051
525354555657
585960616263
646566676869
707172737475
767778798081
828384858687
888990919293
949596979899
100101102103104105
106107108109110111
112113114115116117
118119120121122123
124125126127128129
130131132133134135
136137138139140141
142143144145146147
148149150151152153
154155156157158159
160161162163164165
166167168169170171
172173174175176177
178179180181182183
184185186187188189
190191192193194195
196197198199200201
202203204205206207
208209210211212213
214215216217218219
220221222223224225
226227228229230231
232233234235236237
238239240241242243
244245246247248249
250251252253254255
Terminal reset

Terminal can be cleared with clc.reset

console.log(clc.reset);
Move around functions
clc.move(x, y)

Move cursor x columns and y rows away. Values can be positive or negative, e.g.:

process.stdout.write(clc.move(-2, -2)); // Move cursors two columns and two rows back
clc.moveTo(x, y)

Absolute move. Sets cursor position at x column and y row

process.stdout.write(clc.moveTo(0, 0)); // Move cursor to first row and first column in terminal window
clc.bol([n[, erase]])

Move cursor to the begining of the line, with n we may specify how many lines away we want to move, value can be positive or negative. Additionally we may decide to clear lines content with erase

process.stdout.write(clc.bol(-2)); // Move cursor two lines back and place it at begin of the line
clc.up(n)

Move cursor up n rows

clc.down(n)

Move cursor down n rows

clc.right(n)

Move cursor right n columns

clc.left(n)

Move cursor left n columns

Terminal characteristics
clc.width

Returns terminal width

clc.height

Returns terminal height

Additional functionalities (provided as separate modules)

trim(formatedText) (cli-color/trim)

Trims ANSI formatted string to plain text

var ansiTrim = require('cli-color/trim');

var plain = ansiTrim(formatted);
throbber(write, interval[, format]) (cli-color/throbber)

Writes throbber string to write function at given interval. Optionally throbber output can be formatted with given format function

var setupThrobber = require('cli-color/throbber');

var throbber = setupThrobber(function (str) {
  process.stdout.write(str);
}, 200);

throbber.start();

// at any time you can stop/start throbber
throbber.stop();

Tests Build Status

$ npm test

Keywords

FAQs

Last updated on 20 Mar 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc