This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var blessed = require('blessed'); | |
// Create a screen object. | |
var screen = blessed.screen(); | |
var list = blessed.list({ | |
width: 50, | |
height: 10, | |
top: 1, | |
left: 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var blessed = require('blessed'); | |
var program = blessed.program(); | |
// Create a screen object. | |
var screen = blessed.screen(); | |
function drawTui() { | |
// Create a box perfectly centered horizontally and vertically. | |
var box = blessed.box({ |
NewerOlder