0.2.4 • Published 2 months ago

repl-eval-actor v0.2.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Build Status

replcator

A Read-eval-print loop / REPL / CLI / command line interface application framework for Nodejs.

Installation

 npm install replcator

Use

See examples for more detailed use-cases.

var repl = require('replcator').getInstance();

repl.on('do {something}', function(repl, options) {
  console.log('You want to do %s', options.something);
  repl.next();
});

repl.start();

Testing

 npm test

License

MIT License