Mag is the streaming logger for NodeJS
mag-format-message
is transform stream that makes formatted message from arguments by util.format function.
It makes sense to use mag-format-message
with mag-hub
.
$ npm install mag-format-message mag-hub --save
var hub = require('mag-hub');
var fromat = require('mag-format-message');
hub.pipe(format())
.pipe(/* anything else */)
.pipe(process.stdout);
MIT