$ gnpm install ansicolors
Functions that surround a string with ansicolor codes so it prints in color.
npm install ansicolors
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
Look at the tests to see more examples and/or run them via:
npm explore ansicolors && npm test
Copyright 2013 - present © cnpmjs.org | Home |