Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

hi-repl

srcjz13MIT0.0.1

Read-Eval-Print Loop.

repl, readline, command, cli

readme

Example:


var repl = require("hi-repl");

repl("> ", function(text){
    console.log(text);
});