chalk/readme.md

315 lines
11 KiB
Markdown
Raw Normal View History

2015-02-23 14:38:38 +07:00
<h1 align="center">
2015-06-30 19:57:59 +02:00
<br>
2015-02-23 14:38:38 +07:00
<br>
2018-04-20 13:42:21 +07:00
<img width="320" src="media/logo.svg" alt="Chalk">
2015-02-23 14:38:38 +07:00
<br>
<br>
2015-06-30 19:57:59 +02:00
<br>
2015-02-23 14:38:38 +07:00
</h1>
2013-08-03 02:16:26 +02:00
2013-12-13 20:21:51 +01:00
> Terminal string styling done right
2013-08-03 02:16:26 +02:00
2021-01-24 14:27:41 +07:00
[![Coverage Status](https://coveralls.io/repos/github/chalk/chalk/badge.svg?branch=main)](https://coveralls.io/github/chalk/chalk?branch=main)
2020-12-08 21:43:19 +07:00
[![npm dependents](https://badgen.net/npm/dependents/chalk)](https://www.npmjs.com/package/chalk?activeTab=dependents) [![Downloads](https://badgen.net/npm/dt/chalk)](https://www.npmjs.com/package/chalk)
[![run on repl.it](https://repl.it/badge/github/chalk/chalk)](https://repl.it/github/chalk/chalk)
2021-01-21 10:19:50 +07:00
[![Support Chalk on DEV](https://badge.devprotocol.xyz/0x44d871aebF0126Bf646753E2C976Aa7e68A66c15/descriptive)](https://stakes.social/0x44d871aebF0126Bf646753E2C976Aa7e68A66c15)
2013-11-10 13:25:35 +01:00
2018-10-13 12:32:09 +07:00
<img src="https://cdn.jsdelivr.net/gh/chalk/ansi-styles@8261697c95bf34b6c7767e2cbe9941a851d59385/screenshot.svg" width="900">
2013-08-03 02:16:26 +02:00
2020-09-09 17:48:28 +02:00
<br>
---
<div align="center">
<p>
<p>
<sup>
2020-12-08 21:43:19 +07:00
Sindre Sorhus' open source work is supported by the community on <a href="https://github.com/sponsors/sindresorhus">GitHub Sponsors</a> and <a href="https://stakes.social/0x44d871aebF0126Bf646753E2C976Aa7e68A66c15">Dev</a>
2020-09-09 17:48:28 +02:00
</sup>
</p>
<sup>Special thanks to:</sup>
<br>
<br>
2021-01-20 14:45:02 +07:00
<a href="https://standardresume.co/tech">
2021-01-30 16:59:16 +07:00
<img src="https://sindresorhus.com/assets/thanks/standard-resume-logo.svg" width="160"/>
</a>
<br>
<br>
<a href="https://retool.com/?utm_campaign=sindresorhus">
2021-07-30 13:58:57 +02:00
<img src="https://sindresorhus.com/assets/thanks/retool-logo.svg" width="230"/>
2020-09-09 17:48:28 +02:00
</a>
2021-03-13 00:51:42 +07:00
<br>
<br>
<a href="https://doppler.com/?utm_campaign=github_repo&utm_medium=referral&utm_content=chalk&utm_source=github">
<div>
<img src="https://dashboard.doppler.com/imgs/logo-long.svg" width="240" alt="Doppler">
</div>
<b>All your environment variables, in one place</b>
<div>
<span>Stop struggling with scattered API keys, hacking together home-brewed tools,</span>
<br>
<span>and avoiding access controls. Keep your team and servers in sync with Doppler.</span>
</div>
</a>
2021-07-30 13:58:57 +02:00
<br>
2021-08-11 15:01:41 +02:00
<a href="https://strapi.io/?ref=sindresorhus">
2021-07-30 13:58:57 +02:00
<div>
2021-08-11 15:01:41 +02:00
<img src="https://sindresorhus.com/assets/thanks/strapi-logo-white-bg.png" width="220" alt="Strapi">
</div>
<b>Strapi is the leading open-source headless CMS.</b>
<div>
<sup>Its 100% JavaScript, fully customizable, and developer-first.</sup>
2021-07-30 13:58:57 +02:00
</div>
</a>
2020-09-09 17:48:28 +02:00
</p>
</div>
---
<br>
2017-06-20 22:08:24 +02:00
## Highlights
2013-08-03 02:16:26 +02:00
- Expressive API
2017-06-20 22:08:24 +02:00
- Highly performant
2014-06-24 17:23:43 +02:00
- Ability to nest styles
2017-06-20 22:08:24 +02:00
- [256/Truecolor color support](#256-and-truecolor-color-support)
2013-08-03 02:16:26 +02:00
- Auto-detects color support
2017-06-20 22:08:24 +02:00
- Doesn't extend `String.prototype`
- Clean and focused
2013-08-03 02:16:26 +02:00
- Actively maintained
- [Used by ~76,000 packages](https://www.npmjs.com/browse/depended/chalk) as of October 26, 2021
2013-08-03 02:16:26 +02:00
## Install
2021-08-11 15:01:41 +02:00
```sh
npm install chalk
2014-02-11 20:33:11 +01:00
```
2013-08-03 02:16:26 +02:00
2014-04-03 22:57:06 +02:00
## Usage
2013-08-03 02:16:26 +02:00
```js
2021-04-16 15:23:29 +07:00
import chalk from 'chalk';
console.log(chalk.blue('Hello world!'));
```
Chalk comes with an easy to use composable API where you just chain and nest the styles you want.
2013-08-03 02:16:26 +02:00
```js
2021-04-16 15:23:29 +07:00
import chalk from 'chalk';
const log = console.log;
2013-08-03 02:16:26 +02:00
2017-06-20 22:08:24 +02:00
// Combine styled and normal strings
2018-02-11 14:33:50 +05:30
log(chalk.blue('Hello') + ' World' + chalk.red('!'));
2013-08-03 02:16:26 +02:00
2017-06-20 22:08:24 +02:00
// Compose multiple styles using the chainable API
log(chalk.blue.bgRed.bold('Hello world!'));
2013-08-03 18:47:47 +02:00
2017-06-20 22:08:24 +02:00
// Pass in multiple arguments
log(chalk.blue('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz'));
2014-06-24 17:23:43 +02:00
2017-06-20 22:08:24 +02:00
// Nest styles
log(chalk.red('Hello', chalk.underline.bgBlue('world') + '!'));
2017-06-20 22:08:24 +02:00
// Nest styles of the same type even (color, underline, background)
log(chalk.green(
'I am a green line ' +
chalk.blue.underline.bold('with a blue substring') +
' that becomes green again!'
));
// ES2015 template literal
log(`
CPU: ${chalk.red('90%')}
RAM: ${chalk.green('40%')}
DISK: ${chalk.yellow('70%')}
`);
2017-06-20 10:02:09 -07:00
// Use RGB colors in terminal emulators that support it.
log(chalk.rgb(123, 45, 67).underline('Underlined reddish color'));
log(chalk.hex('#DEADED').bold('Bold gray!'));
2013-08-03 02:16:26 +02:00
```
2017-06-20 22:08:24 +02:00
Easily define your own themes:
2013-08-03 02:16:26 +02:00
```js
2021-04-16 15:23:29 +07:00
import chalk from 'chalk';
2017-06-20 10:02:09 -07:00
2015-10-05 22:36:26 +07:00
const error = chalk.bold.red;
const warning = chalk.hex('#FFA500'); // Orange color
2017-06-20 10:02:09 -07:00
2013-08-03 02:16:26 +02:00
console.log(error('Error!'));
2017-06-20 10:02:09 -07:00
console.log(warning('Warning!'));
2013-08-03 02:16:26 +02:00
```
2017-06-20 22:08:24 +02:00
Take advantage of console.log [string substitution](https://nodejs.org/docs/latest/api/console.html#console_console_log_data_args):
```js
2021-04-16 15:23:29 +07:00
import chalk from 'chalk';
2015-10-05 22:36:26 +07:00
const name = 'Sindre';
console.log(chalk.green('Hello %s'), name);
2015-10-05 22:36:26 +07:00
//=> 'Hello Sindre'
```
2013-08-03 02:16:26 +02:00
## API
2013-10-19 18:04:30 +02:00
### chalk.`<style>[.<style>...](string, [string...])`
2013-08-03 02:16:26 +02:00
2013-12-13 20:21:51 +01:00
Example: `chalk.red.bold.underline('Hello', 'world');`
2013-08-03 02:16:26 +02:00
2017-06-20 22:08:24 +02:00
Chain [styles](#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`.
2013-12-13 20:21:51 +01:00
Multiple arguments will be separated by space.
2013-08-03 02:16:26 +02:00
2017-06-20 10:02:09 -07:00
### chalk.level
2013-08-03 02:16:26 +02:00
Specifies the level of color support.
Color support is automatically detected, but you can override it by setting the `level` property. You should however only do this in your own code as it applies globally to all Chalk consumers.
2015-02-17 15:57:40 +07:00
2017-06-29 13:34:00 -07:00
If you need to change this in a reusable module, create a new instance:
2015-02-17 15:57:40 +07:00
```js
2021-04-18 00:33:03 +12:00
import {Chalk} from 'chalk';
2021-04-16 15:23:29 +07:00
2021-04-18 00:33:03 +12:00
const customChalk = new Chalk({level: 0});
2015-02-17 15:57:40 +07:00
```
2013-08-03 02:16:26 +02:00
| Level | Description |
| :---: | :--- |
| `0` | All colors disabled |
| `1` | Basic color support (16 colors) |
| `2` | 256 color support |
| `3` | Truecolor support (16 million colors) |
2017-06-20 10:02:09 -07:00
2021-04-18 00:33:03 +12:00
### supportsColor
2013-08-03 02:16:26 +02:00
2015-06-30 19:55:37 +02:00
Detect whether the terminal [supports color](https://github.com/chalk/supports-color). Used internally and handled for you, but exposed for convenience.
2013-08-03 02:16:26 +02:00
Can be overridden by the user with the flags `--color` and `--no-color`. For situations where using `--color` is not possible, use the environment variable `FORCE_COLOR=1` (level 1), `FORCE_COLOR=2` (level 2), or `FORCE_COLOR=3` (level 3) to forcefully enable color, or `FORCE_COLOR=0` to forcefully disable. The use of `FORCE_COLOR` overrides all other color support checks.
2017-06-20 22:08:24 +02:00
Explicit 256/Truecolor mode can be enabled using the `--color=256` and `--color=16m` flags, respectively.
2013-08-03 02:16:26 +02:00
2021-04-18 00:33:03 +12:00
### chalkStderr and supportsColorStderr
2019-09-22 12:07:33 +03:00
2021-04-18 00:33:03 +12:00
`chalkStderr` contains a separate instance configured with color support detected for `stderr` stream instead of `stdout`. Override rules from `supportsColor` apply to this too. `supportsColorStderr` is exposed for convenience.
2019-09-22 12:07:33 +03:00
2013-08-03 02:16:26 +02:00
## Styles
### Modifiers
2013-08-03 02:16:26 +02:00
2021-08-11 15:01:41 +02:00
- `reset` - Reset the current style.
- `bold` - Make the text bold.
- `dim` - Make the text have lower opacity.
- `italic` - Make the text italic. *(Not widely supported)*
- `underline` - Put a horizontal line below the text. *(Not widely supported)*
- `overline` - Put a horizontal line above the text. *(Not widely supported)*
- `inverse`- Invert background and foreground colors.
- `hidden` - Print the text but make it invisible.
- `strikethrough` - Puts a horizontal line through the center of the text. *(Not widely supported)*
2021-08-11 15:01:41 +02:00
- `visible`- Print the text only when Chalk has a color level above zero. Can be useful for things that are purely cosmetic.
2013-08-03 02:16:26 +02:00
### Colors
2013-08-03 02:16:26 +02:00
2014-06-04 01:38:03 +02:00
- `black`
- `red`
- `green`
- `yellow`
- `blue`
2014-06-04 01:38:03 +02:00
- `magenta`
- `cyan`
- `white`
2019-07-12 13:59:50 +07:00
- `blackBright` (alias: `gray`, `grey`)
2017-06-20 22:08:24 +02:00
- `redBright`
- `greenBright`
- `yellowBright`
- `blueBright`
- `magentaBright`
- `cyanBright`
- `whiteBright`
2013-08-03 02:16:26 +02:00
### Background colors
2014-06-04 01:38:03 +02:00
- `bgBlack`
- `bgRed`
- `bgGreen`
- `bgYellow`
- `bgBlue`
- `bgMagenta`
- `bgCyan`
- `bgWhite`
2019-07-12 13:59:50 +07:00
- `bgBlackBright` (alias: `bgGray`, `bgGrey`)
2017-06-20 22:08:24 +02:00
- `bgRedBright`
- `bgGreenBright`
- `bgYellowBright`
- `bgBlueBright`
- `bgMagentaBright`
- `bgCyanBright`
- `bgWhiteBright`
2013-08-03 02:16:26 +02:00
2017-06-20 22:08:24 +02:00
## 256 and Truecolor color support
2017-06-20 10:02:09 -07:00
2017-06-20 22:08:24 +02:00
Chalk supports 256 colors and [Truecolor](https://gist.github.com/XVilka/8346728) (16 million colors) on supported terminal apps.
2017-06-20 10:02:09 -07:00
2017-06-20 22:08:24 +02:00
Colors are downsampled from 16 million RGB values to an ANSI color format that is supported by the terminal emulator (or by specifying `{level: n}` as a Chalk option). For example, Chalk configured to run at level 1 (basic color support) will downsample an RGB value of #FF0000 (red) to 31 (ANSI escape for red).
2017-06-20 10:02:09 -07:00
2017-06-20 22:08:24 +02:00
Examples:
2017-06-20 10:02:09 -07:00
- `chalk.hex('#DEADED').underline('Hello, world!')`
- `chalk.rgb(15, 100, 204).inverse('Hello!')`
Background versions of these models are prefixed with `bg` and the first level of the module capitalized (e.g. `hex` for foreground colors and `bgHex` for background colors).
2017-06-20 10:02:09 -07:00
- `chalk.bgHex('#DEADED').underline('Hello, world!')`
- `chalk.bgRgb(15, 100, 204).inverse('Hello!')`
2017-06-20 22:08:24 +02:00
The following color models can be used:
- [`rgb`](https://en.wikipedia.org/wiki/RGB_color_model) - Example: `chalk.rgb(255, 136, 0).bold('Orange!')`
- [`hex`](https://en.wikipedia.org/wiki/Web_colors#Hex_triplet) - Example: `chalk.hex('#FF8800').bold('Orange!')`
- [`ansi256`](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) - Example: `chalk.bgAnsi256(194)('Honeydew, more or less')`
2020-10-04 10:55:17 +13:00
## Browser support
Since Chrome 69, ANSI escape codes are natively supported in the developer console.
## Windows
2019-09-27 11:16:49 +07:00
If you're on Windows, do yourself a favor and use [Windows Terminal](https://github.com/microsoft/terminal) instead of `cmd.exe`.
2017-06-30 12:53:46 +02:00
## Origin story
[colors.js](https://github.com/Marak/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](https://github.com/yeoman/yo/issues/68) and the package is unmaintained. Although there are other packages, they either do too much or not enough. Chalk is a clean and focused alternative.
2019-10-30 19:38:56 +07:00
## chalk for enterprise
Available as part of the Tidelift Subscription.
The maintainers of chalk and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-chalk?utm_source=npm-chalk&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
2015-06-30 21:22:46 +02:00
## Related
- [chalk-template](https://github.com/chalk/chalk-template) - [Tagged template literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#tagged_templates) support for this module
- [chalk-cli](https://github.com/chalk/chalk-cli) - CLI for this module
2016-04-06 23:05:21 +07:00
- [ansi-styles](https://github.com/chalk/ansi-styles) - ANSI escape codes for styling strings in the terminal
- [supports-color](https://github.com/chalk/supports-color) - Detect whether a terminal supports color
2015-06-30 21:22:46 +02:00
- [strip-ansi](https://github.com/chalk/strip-ansi) - Strip ANSI escape codes
- [strip-ansi-stream](https://github.com/chalk/strip-ansi-stream) - Strip ANSI escape codes from a stream
2015-06-30 21:22:46 +02:00
- [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes
- [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape codes
- [wrap-ansi](https://github.com/chalk/wrap-ansi) - Wordwrap a string with ANSI escape codes
- [slice-ansi](https://github.com/chalk/slice-ansi) - Slice a string with ANSI escape codes
2017-06-20 10:02:09 -07:00
- [color-convert](https://github.com/qix-/color-convert) - Converts colors between different models
- [chalk-animation](https://github.com/bokub/chalk-animation) - Animate strings in the terminal
- [gradient-string](https://github.com/bokub/gradient-string) - Apply color gradients to strings
2017-08-24 09:04:07 +08:00
- [chalk-pipe](https://github.com/LitoMore/chalk-pipe) - Create chalk style schemes with simpler style strings
2018-04-05 00:43:20 +07:00
- [terminal-link](https://github.com/sindresorhus/terminal-link) - Create clickable links in the terminal
2015-06-30 21:22:46 +02:00
2017-06-20 19:18:21 +02:00
## Maintainers
- [Sindre Sorhus](https://github.com/sindresorhus)
- [Josh Junon](https://github.com/qix-)