readline-matchtoken
v0.1.0
Published
Adds token matching to nodejs readline and visualizes it by jumping the cursor to it à la emacs.
Downloads
18
Readme
readline-matchtoken
Adds token matching to nodejs readline and visualizes it by jumping the cursor to it à la emacs.
Installation
npm i readline-matchtoken
Demo
npm explore readline-matchtoken && npm run demo
Usage
var rmt = require('')
, repl = require('repl');
var r = repl.start({
prompt: "> ",
input: process.stdin,
output: process.stdout
});
rmt(r.rli);
r.displayPrompt();
Although this example starts a repl
, a readline
interface is all that is needed for
token matching to be applied.