Simple JS library to extend String.prototype to add ANSI Terminal Color support.
$ npm install https://github.com/blister/ansi-colors
require('ansi-colors');
let coloredString = 'blister'.fg('green', 'bright').bg('blue').clearAll();
console.log(coloredString);
console.log(
`${'colors'.fg('yellow').bg('red').clearAll()} ${'are'.fg('blue').bg('cyan').clearAll()} fun!`
);
console.log('Rainbow Foreground'.rfg());
const rbgStr = 'Rainbow Background';
console.log(rbgStr.rbg());