Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ansis

Package Overview
Dependencies
Maintainers
0
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ansis

Colorize terminal output with ANSI colors & styles

  • 3.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
615K
increased by0.42%
Maintainers
0
Weekly downloads
 
Created
Source


ANSI Styling


codecov node size

Colorize terminal with ANSI colors & styles, smaller and faster alternative to Chalk.

🚀 Install and Quick Start

Compare features with similar packages

📊 Benchmarks

📖 Read full docs on GitHub

Usage

import ansis, { red, green, black, ansi256, hex } from 'ansis';

ansis.cyan('file')
green('Ok')
red`Error`
black.bgYellow`Warning`
ansi256(214)`Orange`
hex('#E0115F').bold('TrueColor')

Highlights

ANSI demo

  • Supports ESM, CJS, TypeScript, Bun, Deno, Next.JS
  • Named import: import ansis, { red, bold, hex } from 'ansis'
  • Chained syntax: red.bold.underline('text')
  • Nested template strings: red`RED ${green`GREEN`} RED`
  • ANSI styles: dim bold italic underline strikethrough
  • ANSI 16 colors: red`Error!` redBright`Error!` bgRed`Error!` bgRedBright`Error!`
  • ANSI 256 colors: fg(56)`violet` bg(208)`orange`
  • TrueColor: rgb(224, 17, 95)`Ruby` hex('#96C')`Amethyst`
  • Color fallback: TrueColor → 256 colors → 16 colors → no colors
  • Raw ANSI codes: `foo ${red.open}bar{red.close} foo`
  • Strip ANSI codes: ansis.strip()
  • Detect color support: ansis.isSupported()
  • Supports CLI: NO_COLOR FORCE_COLOR --no-color --color
  • Correct style break at the end of line when used \n
  • Doesn't extend String.prototype
  • No dependencies

Keywords

FAQs

Package last updated on 14 Jul 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc