Skip to content
Simple REPL extension for vantage.js
JavaScript
Find file
Latest commit 9a31ee0 @dthree dthree 1.1.8
Failed to load latest commit information.
lib vorpal refactor :hocho:
test vorpal refactor :hocho:
.gitignore first commit
.travis.yml travis
LICENSE first commit
README.md vorpal refactor :hocho:
package.json 1.1.8

README.md

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

Something went wrong with that request. Please try again.