Socket
Socket
Sign inDemoInstall

picocolors

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    picocolors

The tiniest and the fastest library for terminal output formatting with ANSI colors


Version published
Weekly downloads
56M
increased by0.91%
Maintainers
1
Install size
6.50 kB
Created
Weekly downloads
 

Package description

What is picocolors?

The picocolors npm package is a minimalistic library for coloring terminal text. It provides a simple and efficient way to add color to console output in Node.js applications. The package is designed to be lightweight and fast, making it an excellent choice for projects that require colored output without the overhead of more feature-rich libraries.

What are picocolors's main functionalities?

Text coloring

This feature allows you to color text output in the terminal. The example demonstrates how to make text appear red.

"const pico = require('picocolors');\nconsole.log(pico.red('This text is red'));"

Text styling

This feature enables you to apply styles such as bolding to your text output. The example shows how to make text bold.

"const pico = require('picocolors');\nconsole.log(pico.bold('This text is bold'));"

Background coloring

With this feature, you can set the background color of your text output. The example illustrates setting a green background for the text.

"const pico = require('picocolors');\nconsole.log(pico.bgGreen('This text has a green background'));"

Other packages similar to picocolors

Changelog

Source

v1.0.0

  • Removed several code elements to reduce the package size (#31)
  • Fixed optional flag for createColors() in TypeScript typings (#34)

Readme

Source

picocolors

The tiniest and the fastest library for terminal output formatting with ANSI colors.

import pc from "picocolors"

console.log(
  pc.green(`How are ${pc.italic(`you`)} doing?`)
)
  • No dependencies.
  • 14 times smaller and 2 times faster than chalk.
  • Used by popular tools like PostCSS, SVGO, Stylelint, and Browserslist.
  • Node.js v6+ & browsers support. Support for both CJS and ESM projects.
  • TypeScript type declarations included.
  • NO_COLOR friendly.

Docs

Read full docs on GitHub.

Keywords

FAQs

Last updated on 13 Oct 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc