JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4408284
  • Score
    100M100P100Q202160F
  • License MIT

Functions that surround a string with ansicolor codes so it prints in color.

Package Exports

  • ansicolors

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ansicolors) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ansicolors build status

Functions that surround a string with ansicolor codes so it prints in color.

Installation

npm install ansicolors

Usage

var colors = require('ansicolors');

var redHerring = colors.red('herring');
var blueMoon = colors.blue('moon');
var brighBlueMoon = colors.brightBlue('moon');

console.log(redHerring);      // this will print 'herring' in red
console.log(blueMoon);        // this 'moon' in blue
console.log(brightBlueMoon);  // I think you got the idea

Tests

Look at the tests to see more examples and/or run them via:

npm explore ansicolors && npm test