node-more

Terminal pager for nodejs.

Usage no npm install needed!

<script type="module">
  import nodeMore from 'https://cdn.skypack.dev/node-more';
</script>

README

Deps Status

more

NPM

Terminal pager of long output for nodejs

Installation

Install with npm:

$ npm install node-more

Or 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');
});