Skip to content

vorpaljs/vorpal-repl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vorpal-repl

Build Status

REPL extension for Vorpal.js. Installs the repl command, which drops you into a REPL session within the context of the application. Built in to Vantage.js by default.

Installation
npm install vorpal-repl
npm install vorpal
Programmatic use
// index.js
const Vorpal = require('vorpal');
const repl = require('vorpal-repl');

const vorpal = Vorpal();

vorpal
  .delimiter('node~$')
  .use(repl)
  .show();

License

MIT