0.0.4 • Published 12 years ago
node-more v0.0.4
more
Terminal pager of long output for nodejs
Installation
Install with npm:
$ npm install node-moreOr add it to the "dependencies" section of your package.json file.
Example
var print = require('node-more');
print(Array(100).join('long text\n')).done(function(){
process.stdin.pause();
console.log('end');
});
