A command-line tool and module for printing colourful bole logs.
npm install bistreA command-line tool and module for printing colourful
bole logs.

Install globally to use as a command-line tool:
`` bash`
npm install -g bistre
Simply pipe your bole output into the command-line tool, e.g.:
` bash`
node server.js | bistre
Install locally to use as a module:
Creates a transform stream that takes line-delimted JSON logs as input and
outputs ANSI-highlighted logs for you.
` javascript
var bole = require('bole')
var pretty = require('bistre')()
bole.output({
level: 'info'
, stream: pretty
})
pretty.pipe(process.stdout)
``
MIT. See LICENSE.md for details.