Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
colors-option
Advanced tools
Let users toggle colors.
This is a thin wrapper around the popular
chalk
colors library that adds support for:
colors
boolean optionNO_COLOR
and
NODE_DISABLE_COLORS
environment variablesimport colorsOption from 'colors-option'
const exampleLibrary = function ({ colors, ...otherLibraryOptions }) {
const chalk = colorsOption({ colors })
console.log(chalk.red('example'))
}
npm install colors-option
This package is an ES module and must be loaded using
an import
or import()
statement,
not require()
.
options
: object
Return value: Chalk
instance
Type: boolean
Default: undefined
Whether colors should be enabled/disabled, regardless of terminal support. Colors support is automatically detected, so this is only meant to override that default behavior.
The recommended approach is to:
colors
boolean programmatic option and/or CLI flagundefined
colors-option
Instead of using
chalk/supports-color
, this relies
on Node.js built-in colors detection
getColorDepth()
which:
NO_COLOR
and
NODE_DISABLE_COLORS
environment variables.--colors
CLI flag. This
gives finer control and flexibility over how to expose this as a CLI flag.Please note that chalk
has a similar
level
option. However, that
option is an integer from 0
to 3
which makes it hard to toggle colors while
still keeping 256 colors or Truecolor.
Type:
Stream
Default: process.stdout
Stream used to detect colors support. This should be the file or terminal where the colors are output.
terminal-theme
: 🎨 Use a color
theme for your code's terminal output.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.
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!
2.0.1
main
field in package.json
FAQs
Let users toggle colors
The npm package colors-option receives a total of 204,305 weekly downloads. As such, colors-option popularity was classified as popular.
We found that colors-option 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
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.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.