Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
The kleur npm package is a library for formatting terminal text with ANSI colors. It provides a simple and chainable API to style strings that are output to the console with various colors, backgrounds, and text styles.
Coloring text
This feature allows you to apply text color to your console output. The example shows how to color the text green.
const kleur = require('kleur');
console.log(kleur.green('Hello world!'));
Chaining styles
Kleur supports chaining multiple styles together. In this example, the text 'Error!' is styled to be red, bold, and underlined.
const kleur = require('kleur');
console.log(kleur.red().bold().underline('Error!'));
Background colors
You can also set background colors for your text. Here, the text 'Info' has a blue background with white foreground color.
const kleur = require('kleur');
console.log(kleur.bgBlue().white('Info'));
Conditional styling
Kleur allows conditional styling, where you can enable or disable colors based on certain conditions. In this example, the red color is applied only if the environment is not production.
const kleur = require('kleur');
const enabled = process.env.NODE_ENV !== 'production';
console.log(kleur.enabled(enabled).red('Only styled if not in production'));
Chalk is a popular npm package similar to kleur that allows for styling terminal strings. It offers a more extensive API and additional features like template literal support and custom themes, but it is slightly larger in size compared to kleur.
Colors is another package that provides ANSI color formatting for text in the terminal. It extends String.prototype to add color properties, which some developers may find less clean than the functional approach taken by kleur.
Ansi-colors is a lightweight package that focuses on performance. Like kleur, it does not extend String.prototype and has a chainable API, but it has fewer dependencies and is designed to be as minimal as possible.
String.prototype
modificationsprintf
formattingHeavily inspired by ansi-colors
. See Credits for more info!
$ npm install --save kleur
const kleur = require('kleur');
// basic usage
kleur.red('red text');
// or variadic arguments
kleur.red('this', 'is', 'also', 'red');
// or printf formatting
kleur.red('%s, %s!', 'hello', 'world');
// chained methods
kleur.blue.bold.underline('howdy partner');
// nested methods
kleur.bold(`${ kleur.bgRed.white('[ERROR]') } ${ kleur.red.italic('Something happened')}`);
console.log(kleur.bold.red('this is a bold red message'));
console.log(kleur.bold.italic('this is a bold italicized message'));
console.log(kleur.bold.yellow.bgRed.italic('this is a bold yellow italicized message'));
console.log(kleur.green.bold.underline('this is a bold green underlined message'));
const { yellow, red, cyan } = require('kleur');
// with template literals
console.log(yellow(`foo ${red.bold('red')} bar ${cyan('cyan')} baz`));
// or variadic arguments
console.log(yellow('foo', red.bold('red'), 'bar', cyan('cyan'), 'baz'));
printf
FormattingSee
util.format
for documentation
const { yellow, bgGreen, bold } = require('kleur');
// basic usage
console.log(bold.cyan('%s, %s!', 'Hello', 'World', '-Anonymous'));
// or with nested colors
console.log( bold('%s-like %s... %s!', 'printf', bgGreen.black('formatting'), yellow('YAY')) );
Manually strip all ANSI codes from a given string.
let str = kleur.blue('Howdy partner');
//=> styled
kleur.clear(str);
//=> 'Howdy partner'
Toggle color support as needed; kleur
assumes it's always enabled.
const kleur = require('kleur');
// manually disable
kleur.enabled = false;
// or use a library to detect support
kleur.enabled = require('color-support').stdout;
console.log(kleur.red('I will only be colored red if the terminal supports colors'));
Any kleur
method returns a String
(when invoked, not chained). It's up to the developer to pass the output to destinations like console.log
, process.stdout.write
, etc.
The methods below are grouped by type for legbility purposes only. They each can be chained or nested with one another.
Colors:
black — red — green — yellow — blue — magenta — cyan — white — gray
Backgrounds:
bgBlack — bgRed — bgGreen — bgYellow — bgBlue — bgMagenta — bgCyan — bgWhite
Modifiers:
reset — bold — dim — italic* — underline — inverse — hidden — strikethrough*
* Not widely supported
Using Node v8.9.0
ansi-colors: 1.172ms
chalk: 11.799ms
clorox: 0.922ms
kleur: 0.694ms
# All Colors
ansi-colors x 60,235 ops/sec ±0.57% (93 runs sampled)
chalk x 7,125 ops/sec ±4.23% (69 runs sampled)
clorox x 1,175 ops/sec ±3.95% (71 runs sampled)
kleur x 74,307 ops/sec ±0.40% (96 runs sampled)
# Stacked colors
ansi-colors x 13,547 ops/sec ±0.15% (97 runs sampled)
chalk x 1,631 ops/sec ±4.83% (72 runs sampled)
clorox x 454 ops/sec ±2.43% (40 runs sampled)
kleur x 21,825 ops/sec ±0.31% (94 runs sampled)
# Nested colors
ansi-colors x 27,553 ops/sec ±0.45% (93 runs sampled)
chalk x 3,445 ops/sec ±4.31% (69 runs sampled)
clorox x 552 ops/sec ±2.79% (45 runs sampled)
kleur x 32,405 ops/sec ±0.36% (92 runs sampled)
This project (inadvertently) is very similar to Brian Woodward's awesome ansi-colors
project. My original implementation involved writing into a global state — first by writing into an output string, and then by saving the keys
array into the $
directly. Both approaches were leaky & allowed for accidental chains/overwrites. In turn, I borrowed ansi-colors
's approach in writing keys
state into each chain directly.
Aside from the performance boost, kleur
exists as a separate module because I've no need for bright color variants nor the symbols. And since those are defining features of ansi-colors
, they're not something that can be removed.
The benchmark suite is also imported directly from ansi-colors
:raised_hands:
MIT © Luke Edwards
FAQs
The fastest Node.js library for formatting terminal text with ANSI colors~!
The npm package kleur receives a total of 13,574,769 weekly downloads. As such, kleur popularity was classified as popular.
We found that kleur demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.