Terminal string styling done right
colors.js used to be the most popular string styling module, but it has serious deficiencies like extending String.prototype
which causes all kinds of problems. Although there are other ones, they either do too much or not enough.
Chalk is a clean and focused alternative.
Why
Highly performant
Doesn't extend
String.prototype
Expressive API
Ability to nest styles
Clean and focused
Auto-detects color support
Actively maintained
Install
Usage
Chalk comes with an easy to use composable API where you just chain and nest the styles you want.
Easily define your own themes.
Take advantage of console.log string substitution.
API
chalk.<style>[.<style>...](string, [string...])
Example: chalk.red.bold.underline('Hello', 'world');
Chain styles and call the last one as a method with a string argument. Order doesn't matter, and later styles take precedent in case of a conflict. This simply means that Chalk.red.yellow.green
is equivalent to Chalk.green
.
Multiple arguments will be separated by space.
chalk.enabled
Color support is automatically detected, but you can override it by setting the enabled
property. You should however only do this in your own code as it applies globally to all chalk consumers.
If you need to change this in a reusable module create a new instance:
chalk.supportsColor
Detect whether the terminal supports color. Used internally and handled for you, but exposed for convenience.
Can be overridden by the user with the flags --color
and --no-color
. For situations where using --color
is not possible, add an environment variable FORCE_COLOR
with any value to force color. Trumps --no-color
.
chalk.styles
Exposes the styles as ANSI escape codes.
Generally not useful, but you might need just the .open
or .close
escape code if you're mixing externally styled strings with your own.
chalk.hasColor(string)
Check whether a string has color.
chalk.stripColor(string)
Strip color from a string.
Can be useful in combination with .supportsColor
to strip color on externally styled text when it's not supported.
Example:
Styles
Modifiers
reset
bold
dim
italic
(not widely supported)underline
inverse
hidden
strikethrough
(not widely supported)
Colors
black
red
green
yellow
blue
(on Windows the bright version is used as normal blue is illegible)magenta
cyan
white
gray
Background colors
bgBlack
bgRed
bgGreen
bgYellow
bgBlue
bgMagenta
bgCyan
bgWhite
256-colors
Chalk does not support support anything other than the base eight colors, which guarantees it will work on all terminals and systems. Some terminals, specifically xterm
compliant ones, will support the full range of 8-bit colors. For this the lower level ansi-256-colors package can be used.
Windows
If you're on Windows, do yourself a favor and use cmder
instead of cmd.exe
.
License
MIT © Sindre Sorhus