yoctocolors
Version:
The smallest and fastest command-line coloring package on the internet
139 lines (103 loc) ⢠3.53 kB
Markdown
<sup>yoctocolors š</sup>
> The smallest and fastest command-line coloring package on the internet
*Check out [Chalk](https://github.com/chalk/chalk) if you want something more mature and comprehensive.*
## Highlights
- Tiny
- Fast
- Handles nested colors
- Tree-shakeable
- No dependencies
- Actively maintained
## Install
ESM:
```sh
npm install yoctocolors
```
Or CommonJS:
```sh
npm install yoctocolors-cjs
```
## Usage
```js
import colors from 'yoctocolors';
console.log(colors.red('Yo!'));
console.log(colors.blue(`Welcome to the ${colors.green('yoctocolors')} package!`));
```
You can also import colors as named imports:
```js
import {red, blue, green} from 'yoctocolors';
console.log(red('Yo!'));
console.log(blue(`Welcome to the ${green('yoctocolors')} package!`));
```
*This package supports [basic color detection](https://nodejs.org/api/tty.html#writestreamhascolorscount-env). Colors can be forcefully enabled by setting the `FORCE_COLOR` environment variable to `1` and can be forcefully disabled by setting `NO_COLOR` or `NODE_DISABLE_COLORS` to any value. [More info.](https://nodejs.org/api/tty.html#writestreamgetcolordepthenv)*
## Styles
### Modifiers
- `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 above the text. *(Not widely supported)*
- `overline` - Put a horizontal line below the text. *(Not widely supported)*
- `inverse`- Invert background and foreground colors.
- `hidden` - Print the text but make it invisible.
- `strikethrough` - Put a horizontal line through the center of the text. *(Not widely supported)*
### Colors
- `black`
- `red`
- `green`
- `yellow`
- `blue`
- `magenta`
- `cyan`
- `white`
- `gray`
- `redBright`
- `greenBright`
- `yellowBright`
- `blueBright`
- `magentaBright`
- `cyanBright`
- `whiteBright`
### Background colors
- `bgBlack`
- `bgRed`
- `bgGreen`
- `bgYellow`
- `bgBlue`
- `bgMagenta`
- `bgCyan`
- `bgWhite`
- `bgGray`
- `bgRedBright`
- `bgGreenBright`
- `bgYellowBright`
- `bgBlueBright`
- `bgMagentaBright`
- `bgCyanBright`
- `bgWhiteBright`
## Prior art
Yes
## Benchmark
```sh
$ ./benchmark.js
āāāāāāāāāāā¬āāāāāāāāāāāāāāāāā¬āāāāāāāāāāāāāā
ā (index) ā library ā ops/sec ā
āāāāāāāāāāā¼āāāāāāāāāāāāāāāāā¼āāāāāāāāāāāāāā¤
ā 0 ā 'yoctocolors' ā '8,000,000' ā
ā 1 ā 'colorette' ā '8,000,000' ā
ā 2 ā 'picocolors' ā '8,000,000' ā
ā 3 ā 'nanocolors' ā '5,988,024' ā
ā 4 ā 'chalk' ā '4,807,692' ā
ā 5 ā 'kleur/colors' ā '4,807,692' ā
ā 6 ā 'kleur' ā '4,784,689' ā
ā 7 ā 'ansi-colors' ā '2,178,649' ā
ā 8 ā 'cli-color' ā '585,138' ā
āāāāāāāāāāā“āāāāāāāāāāāāāāāāā“āāāāāāāāāāāāāā
```
*See [benchmark.js](benchmark.js).*
## FAQ
### What is yocto?
[It was the smallest official unit prefix in the metric system until 2022.](https://en.wikipedia.org/wiki/Yocto-) Much smaller than nano.
## Related
- [yoctodelay](https://github.com/sindresorhus/yoctodelay) - Delay a promise a given amount of time
- [chalk](https://github.com/chalk/chalk) - Terminal string styling