Background-log-supporting ReadLine
Have you ever tried using the node
readline
module while having an async callback logging stuff in the background? This breaks the wholereadline
prompt.
brl
is areadline
wrapper that uses weird terminal escape tricks, and interceptsprocess.stdout
, in order to move the prompt down every time a line is logged.
npm install brl
import { createInterface, BRLInterface } from 'brl';
The library can be used in two different ways:
createInterface
has the same API asreadline
but is a bit limitedBRLInterface
is quite easy to use and gives you a bit more control over some features
import { createInterface } from 'brl';
// Same API as readline (actually, it returns a real readline interface)
const rl = createInterface();
rl.setPrompt('> ');
rl.on('line', line => rl.prompt());
rl.prompt();
// Simulate background log
setInterval(() => console.log('Background log...'), 1000);
import { BRLInterface } from 'brl';
const iface = new BRLInterface();
iface.setPrompt('> ');
iface.promptLoop(); // You can pass a callback directly to this method
// iface.prompt();
// iface.onLine([cb]);
// iface.start() !!! If you don't use promptLoop(), you must explicitly start the interface
// iface.readline !!! Access to the underlying readline interface
// Simulate background log
setInterval(() => console.log('Background log...'), 1000);
If you notice any bug or have a suggestion, please tell me about it in the issues, it will help everyone!
brl is licensed under the very permissive MIT License. You may use it for commercial projects if you comply to the license. However, the core feature's code was written by Eric in a StackOverflow answer licensed as CC-BY-SA. Thanks to him for his big indirect contribution !