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

colorado

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colorado

ridiculously simple console string styling

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

#colorado

ridiculously simple console string styling in nodejs.

aside: named after a cool state

###Install

npm install colorado

###Usage

var colorado = require('colorado');

colorado is a function that takes any number of arguments.

Pass in a string to add plain text:

var boring = colorado('blah');
console.log(boring); // is boring

Pass it an array of styles and it will turn them into ANSI codes:

var dangerous = colorado(['red','bold','blink'], 'danger!');
console.log(dangerous); // made you look

If you already know the code number for a style, pass it as a number:

var justAsDangerous = colorado([31,1,5], 'danger!');
console.log(justAsDangerous); // remarkably similar

Easily inline styles by passing several arguments:

var cuteStory = colorado(
  'I was reading all this boring text and then ',
  ['bold', 'yellow', 'redBG'],
  'BAM!',
  [22,36,49], ' everything looked cyan to me...'
);
console.log(cuteStory); // very anecdotal

Keywords

FAQs

Package last updated on 13 Mar 2014

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