0.2.0 • Published 4 years ago

vorpal-shell v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

vorpal-shell

Vorpal Extension for running shell commands

npm License: MIT

About

Vorpal extension that enables you to run shell command, right from the vorpal REPL

To do so, start your command with $. Some completion is even availabled. (Hovewer due to a current vorpal caveat, it wont autocomplete your options :confused:)

Besic Setup

const Vorpal = require('vorpal');
const vorpalShell = require('vorpal-shell');

const vorpal = Vorpal();

vorpal
  .delimiter('>> ')
  .use(vorpalShell({shell: 'zsh'}))
  .show();
0.2.0

4 years ago

0.1.0

6 years ago