A port of python blessings.
npm install blessingsThis is a node.js port of blessings, an easy to use library for manipulating ANSITERM terminals.
```
$ npm install blessings
The module exports a class called Terminal, which gives you a few handy methods for manipulating the terminal. For example:
`javascript
var Terminal = require('blessings')
with (new Terminal()) {
writeln(red('red'), green('green'), 'and', blue('blue'))
writeln(bold('bold'), 'and', normal('normal'))
writeln(bg.darkgray('dark backgrounds'))
}
``
MIT License