Quickly create a Winston-based logger with colored output enabled by default
npm install winston-color
var logger = require("winston-color");
// use standard Winston methods
logger.error(...);
logger.warn(...);
logger.info(...);
logger.debug(...);
logger.silly(...);
For the full reference check the Winston GitHub repository.