Somes colors and logging.
const color = require('nodeColor'); // Add colors and timestamps to default console.log / warn / errorconst color = require('nodeColor');
color.initLogging('filename', './logFoolder'); // Write default console.log / warn / err to specified file
color.setLog('AnOtherFilename', 'LOG', 'This is a log !');
color.setLog('AnOtherFilename', 'WARN', 'This is a warning !');
color.setLog('AnOtherFilename', 'ERR', 'This is an error !');