compound-ex4
Version:
Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)
26 lines (17 loc) • 635 B
JavaScript
;
var clc = require('../');
console.log('Erasing screen ..');
setTimeout(function () {
process.stdout.write(clc.erase.screen);
console.log('This a line of text that should not be cleared');
process.stdout.write('This line will be cleared but cursor will be here ->');
setTimeout(function () {
process.stdout.write(clc.erase.line);
process.stdout.write('\nMoving cursor backwards and deleting (from here): to the right');
setTimeout(function () {
process.stdout.write(clc.move(-13, 0));
process.stdout.write(clc.erase.lineRight);
setTimeout(function () {}, 2000);
}, 2000);
}, 2000);
}, 2000);