Skip to content

vorpaljs/vorpal-use

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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~$')
  .use(use)
  .show();

License

MIT

About

Establishes live importing of vorpal extensions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published