npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

terminal-ansi-colors

v1.0.0

Published

Esse pacote exporta uma função utilitária para aplicar cores ANSI em strings, permitindo personalizar saídas coloridas no terminal. Ele suporta cores predefinidas, valores RGB personalizados e também estilos como negrito, itálico e sublinhado.

Downloads

3

Readme

terminal-ansi-colors

Esse pacote exporta uma função utilitária para aplicar cores ANSI em strings, permitindo personalizar saídas coloridas no terminal. Ele suporta cores predefinidas, valores RGB personalizados e também estilos como negrito, itálico e sublinhado.

Instalação

Você pode instalar este pacote via npm:

npm install terminal-ansi-colors

Uso

Importando

const { c } = require('terminal-ansi-colors');

Aplicando Cores de texto

Você pode encadear as funções para aplicar cores e estilos a uma string.

// Aplicando cores de texto e fundo
console.log(c("Olá").txtName("green").bgName("yellow").str);

// Alterando cores de texto repetidamente
console.log(c("Texto").txtName("green").txtName("black").txtName("red").str);

// Usando cores RGB personalizadas
console.log(c("Texto com cor RGB").txtRGB([180, 180, 180]).str);

// Aplicando estilo itálico e removendo fundo
console.log(c("Texto estilizado").style("italic").txtName("green").bgName("white").bgName("default").str);

Métodos Disponíveis

txtName: Define a cor do texto com um nome de cor predefinido.

console.log(c("Texto").txtName("blue") + ".");

txtRGB: Define a cor do texto usando um valor RGB.

console.log(c("Texto").txtRGB([255, 0, 0]).str); // Texto em vermelho

bgName: Define a cor de fundo com um nome de cor predefinido ou restaura o fundo padrão com "default".

console.log(c("Texto").bgName("yellow").str);

bgRGB: Define a cor de fundo usando um valor RGB.

console.log(c("Texto").bgRGB([255, 255, 0]).str); // Fundo amarelo

style: Aplica um estilo ao texto. Estilos disponíveis:

  • bold (negrito)
  • dim (escurecido)
  • italic (itálico)
  • underline (sublinhado)
  • blink (piscar)
  • rapidBlink (piscar rápido)
  • reverse (inverter cores)
  • hidden (oculto)
  • strikethrough (tachado)
  • doubleUnderline (duplo sublinhado)
console.log(c("Texto estilizado").style("bold").str);

Cores Predefinidas

As seguintes cores podem ser usadas como valores para txtName e bgName:

  • Vermelhos:
    • red
    • darkRed
    • lightRed
  • Verdes:
    • green
    • darkGreen
    • lightGreen
  • Azuis:
    • blue
    • darkBlue
    • lightBlue
  • Amarelos:
    • yellow
    • darkYellow
    • lightYellow
  • Ciano:
    • cyan
    • darkCyan
    • lightCyan
  • Magenta:
    • magenta
    • darkMagenta
    • lightMagenta
  • Neutros:
    • black
    • white
    • gray
    • darkGray
    • lightGray
  • Laranjas:
    • orange
    • darkOrange
    • lightOrange
  • Roxos:
    • purple
    • darkPurple
    • lightPurple
  • Marrons:
    • brown
    • darkBrown
    • lightBrown
  • Rosas:
    • pink
    • darkPink
    • lightPink
  • Outros:
    • navy
    • teal
    • olive
    • maroon
    • lime

Exemplo Completo:

const { c } = require('terminal-ansi-colors');

// String com texto verde, fundo amarelo, e em negrito
const message = c("Alerta!")
  .txtName("green")
  .bgName("yellow")
  .style("bold");

console.log(message.str);

// A mesma mensagem porém com o fundo padrão do terminal
console.log(message.bgName("default").str);