npm.io
1.0.1 • Published 10 years ago

vorpal-use

Licence
MIT
Version
1.0.1
Deps
3
Vulns
5
Weekly
0
Stars
7

vorpal-use

Build Status

An extension for Vorpal.

Forgot to install a useful extension in development and now you need it live? No problem.

This will install a use command into one's Vorpal instance, which will automatically import a given NPM module acting as a Vorpal extension, and register the commands contained inside while the app is still live. This import has an in-memory lifecycle and the module is dumped when the thread quits.

node~$
node~$ use vorpal-repl
Installing vorpal-repl from the NPM registry:
Successfully registered 1 new command.
node~$
node~$ repl
node~$ repl: 6*8
48
node~$ repl:

Installation

npm install vorpal-use --save

Usage

const Vorpal = require('vorpal');
const use = require('vorpal-use');
let vorpal = new Vorpal();

vorpal
  .delimiter('node~
License

MIT

) .use(use) .show();
License

MIT

Keywords