2013-01-27 16:06:58 +00:00
|
|
|
# blessed
|
|
|
|
|
|
|
|
A curses-like library for node.js.
|
|
|
|
|
2013-01-27 17:14:06 +00:00
|
|
|
As of right now, it does not read all terminfo. It was designed for one
|
|
|
|
terminal's terminfo: **xterm**.
|
|
|
|
|
|
|
|
I want this library to eventually become a high-level library for terminal
|
|
|
|
widgets.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
``` js
|
2013-01-27 17:33:45 +00:00
|
|
|
var Program = require('blessed')
|
2013-01-27 17:14:06 +00:00
|
|
|
, program = new Program;
|
|
|
|
|
|
|
|
program.on('key', function(ch, key) {
|
|
|
|
if (key.ctrl && key.name === 'c') {
|
|
|
|
console.log('This would have been SIGINT!');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
program.setMouse({ normalMouse: true });
|
|
|
|
|
2013-01-27 17:32:22 +00:00
|
|
|
program.on('mouse', function(data) {
|
2013-01-27 17:14:06 +00:00
|
|
|
console.log('Mouse event received:');
|
|
|
|
console.log(data.button, data.x, data.y);
|
|
|
|
});
|
|
|
|
|
|
|
|
program.alternateBuffer();
|
|
|
|
|
|
|
|
program.clear();
|
|
|
|
|
|
|
|
program.bg('white');
|
|
|
|
program.fg('blue');
|
|
|
|
program.write('Hello world');
|
|
|
|
program.fg('!blue');
|
|
|
|
program.setx(1);
|
|
|
|
program.down(5);
|
|
|
|
program.write('Hi again!');
|
|
|
|
program.bg('!white');
|
|
|
|
program.feed();
|
|
|
|
|
2013-01-27 17:33:04 +00:00
|
|
|
program.getCursor(function(err, data) {
|
|
|
|
if (!err) {
|
|
|
|
console.log('Cursor is at: %s, %s.', data.x, data.y);
|
|
|
|
}
|
2013-01-27 17:14:06 +00:00
|
|
|
|
|
|
|
program.charset('SCLD');
|
|
|
|
program.write('abcdefghijklmnopqrstuvwxyz0123456789');
|
|
|
|
program.charset('US');
|
|
|
|
program.setx(0);
|
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
program.eraseInLine('right');
|
|
|
|
setTimeout(function() {
|
|
|
|
program.clear();
|
|
|
|
program.normalBuffer();
|
|
|
|
program.setMouse({ normalMouse: false });
|
|
|
|
}, 2000);
|
|
|
|
}, 2000);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2013-01-27 16:06:58 +00:00
|
|
|
## License
|
|
|
|
|
|
|
|
Copyright (c) 2013, Christopher Jeffrey. (MIT License)
|
|
|
|
|
|
|
|
See LICENSE for more info.
|