Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrieankhisbe/vorpal-shell
Vorpal Extension for running shell commands
https://github.com/adrieankhisbe/vorpal-shell
vorpal vorpal-replinception
Last synced: about 2 months ago
JSON representation
Vorpal Extension for running shell commands
- Host: GitHub
- URL: https://github.com/adrieankhisbe/vorpal-shell
- Owner: AdrieanKhisbe
- License: mit
- Created: 2018-01-19T15:03:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-17T21:52:11.000Z (almost 5 years ago)
- Last Synced: 2024-11-12T17:49:29.566Z (about 2 months ago)
- Topics: vorpal, vorpal-replinception
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# vorpal-shell
> Vorpal Extension for running shell commands[![npm](https://img.shields.io/npm/v/vorpal-shell.svg)](https://www.npmjs.com/package/vorpal-shell)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)### About
Vorpal extension that enables you to run **shell** command, right from the vorpal REPLTo 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
```js
const Vorpal = require('vorpal');
const vorpalShell = require('vorpal-shell');const vorpal = Vorpal();
vorpal
.delimiter('>> ')
.use(vorpalShell({shell: 'zsh'}))
.show();
```