A package to color the text and create timestamped logs string
npm i rainbow_chalk
var rainbow = require('rainbow_chalk');
var myRainbow = new rainbow.Rainbow();
console.log(myRainbow.info("hi this is an info log"));
console.log(myRainbow.warn("hi this is an warning log"));
console.log(myRainbow.error("hi this is an error log"));
console.log(myRainbow.dim("this dim text"));
console.log(myRainbow.blue("this blue text"));
console.log(myRainbow.cyan("this cyan text"));
console.log(myRainbow.blink("this blink text"));
console.log(myRainbow.green("this green text"));
console.log(myRainbow.bright("this bright text"));
console.log(myRainbow.magenta("this magenta text"));
console.log(myRainbow.lightYellow("this light yellow text"));
console.log(myRainbow.invertBg("this inverted background text"));