Read-Evaluate-Print-Loop environment for JavaScript.
npm i bare-repl
const { start } = require('bare-repl')
const repl = start()
Options include:
{
prompt: string, // sets repl prompt
useColors: boolean, // toogles ANSI style codes to colorize the output
writer: (message) => message, // converts repl output
input: stream, // sets repl input stream
output: stream, // sets repl output stream
eval: (cmd) => {} // sets eval function
}
Define a repl command keyword.
repl.defineCommand('greet', { help: 'Greetings', action: () => console.log('hello') })
bare-repl
> .greet
hello
Set execution context.
repl.context.f = () => console.log('Hello from context')
bare-repl
> f()
Hello from context
Apache-2.0