パッケージの詳細

colors-option

ehmicky747.8kMIT6.1.2

Let users toggle colors

color, colors, option, config

readme

Node TypeScript Codecov Mastodon Medium

Let users toggle colors.

This is a thin wrapper around the popular chalk colors library that adds support for:

Example

import colorsOption from 'colors-option'

const exampleLibrary = ({ colors, ...otherLibraryOptions }) => {
  const chalk = colorsOption({ colors })
  console.log(chalk.red('example'))
}

Install

npm install colors-option

This package works in Node.js >=18.18.0.

This is an ES module. It must be loaded using an import or import() statement, not require(). If TypeScript is used, it must be configured to output ES modules, not CommonJS.

API

colorsOption(options?)

options: object\ Return value: Chalk instance

options

colors

Type: boolean

Whether colors should be displayed or not.

The default value depends on whether the stream supports colors. Therefore, this is only meant to override that.

Instead of using chalk/supports-color, the default value relies on Node.js built-in colors detection getColorDepth() which:

  • Supports the NO_COLOR and NODE_DISABLE_COLORS environment variables.
  • Does not guess colors detection based on the presence of a --colors CLI flag. This gives finer control and flexibility over how to expose this as a CLI flag.

level

Type: 1 | 2 | 3

How many colors to display. The value can be:

  • 1: 16 (4 bits)
  • 2: 256 (8 bits)
  • 3: 16 millions (24 bits)

The default value depends on how many colors the stream supports. Therefore, this is only meant to override that.

stream

Type: Stream\ Default: process.stdout

Stream used to detect the default value of the colors and level options.

This should be the file or terminal where the colors are output.

See also

Support

For any question, don't hesitate to submit an issue on GitHub.

Everyone is welcome regardless of personal background. We enforce a Code of conduct in order to promote a positive and inclusive environment.

Contributing

This project was made with ❤️. The simplest way to give back is by starring and sharing it online.

If the documentation is unclear or has a typo, please click on the page's Edit button (pencil icon) and suggest a correction.

If you would like to help us fix a bug or add a new feature, please check our guidelines. Pull requests are welcome!

更新履歴

6.1.2

Bug fixes

  • When the stream is not a TTY but colors are forced using the colors: true option, colors should be shown and should respect the terminal's default level.

6.1.1

Bug fixes

  • When the level option is set but not the colors option, no colors should be shown if the stream does not support them.

6.1.0

Features

  • Add level option to override the number of colors to display. For example, to force 256 or 16 millions colors mode.

6.0.1

Documentation

  • Improve documentation in README.md

6.0.0

Breaking changes

  • Minimal supported Node.js version is now 18.18.0

5.0.0

Breaking changes

  • Minimal supported Node.js version is now 16.17.0

4.5.0

Features

  • Improve tree-shaking support

4.4.0

Features

  • Reduce npm package size by 99%, from 4130B to 56kB

4.3.1

Bug fixes

  • Fix package.json

4.3.0

  • Switch to MIT license

4.2.0

Features

  • Reduce npm package size

4.1.0

Features

  • Add TypeScript types

4.0.0

Breaking changes

  • Minimal supported Node.js version is now 14.18.0

3.0.0

Breaking changes

  • Upgrade to chalk@v5.
  • This means the following methods are not available anymore: keyword(), hsl(), hsv(), hwb() and ansi().
  • This also means advanced templating is also not available anymore.

2.0.1

Bug fixes

  • Fix main field in package.json

2.0.0

Breaking changes

  • Minimal supported Node.js version is now 12.20.0
  • This package is now an ES module. It can only be loaded with an import or import() statement, not require(). See this post for more information.

1.0.0

Features

  • Initial release