This is tiny helper for colored output in Terminal.
npm install colorodo
console.log('some nice text'.color('yellow'))
String.prototype.color=function(c){l={black:30,red:31,green:32,yellow:33,blue:34,white:37};return"\033["+l[c]+"m"+this+"\033[0m"}
MIT.