Server IP : 85.214.239.14 / Your IP : 18.216.115.79 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/3/task/3/root/usr/lib/node_modules/pm2/node_modules/blessed/example/ |
Upload File : |
/** * Example Program for Blessed * Copyright (c) 2013, Christopher Jeffrey (MIT License). * https://github.com/chjj/blessed */ var blessed = require('../') , program = blessed.program(); process.title = 'blessed'; program.on('keypress', function(ch, key) { if (key.name === 'q') { program.clear(); program.disableMouse(); program.showCursor(); program.normalBuffer(); process.exit(0); } }); program.on('mouse', function(data) { if (data.action === 'mouseup') return; program.move(1, program.rows); program.eraseInLine('right'); if (data.action === 'wheelup') { program.write('Mouse wheel up at: ' + data.x + ', ' + data.y); } else if (data.action === 'wheeldown') { program.write('Mouse wheel down at: ' + data.x + ', ' + data.y); } else if (data.action === 'mousedown' && data.button === 'left') { program.write('Left button down at: ' + data.x + ', ' + data.y); } else if (data.action === 'mousedown' && data.button === 'right') { program.write('Right button down at: ' + data.x + ', ' + data.y); } else { program.write('Mouse at: ' + data.x + ', ' + data.y); } program.move(data.x, data.y); program.bg('red'); program.write(' '); program.bg('!red'); }); program.on('focus', function() { program.move(1, program.rows); program.write('Gained focus.'); }); program.on('blur', function() { program.move(1, program.rows); program.write('Lost focus.'); }); program.alternateBuffer(); program.enableMouse(); program.hideCursor(); program.clear(); program.move(1, 1); program.bg('black'); program.write('Hello world', 'blue fg'); program.setx((program.cols / 2 | 0) - 4); program.down(5); program.write('Hi again!'); program.bg('!black'); program.feed(); program.getCursor(function(err, data) { if (!err) { program.write('Cursor is at: ' + data.x + ', ' + data.y + '.'); program.feed(); } program.charset('SCLD'); program.write('abcdefghijklmnopqrstuvwxyz0123456789'); program.charset('US'); program.setx(1); });