vorpal icon indicating copy to clipboard operation
vorpal copied to clipboard

Node's framework for interactive CLIs

Results 108 vorpal issues
Sort by recently updated
recently updated
newest added

I use `Vorpal` for a short time and recently found the following issue. This is my code: ```js const vorpal = require('vorpal')(); vorpal.command('add [text...]', '...') .types({ string: ['text'] }) .action(function(args,...

Just wondering if the next major release of vorpal will be written in TypeScript? The current version is based on RxJS and since RxJS5 is in TS, it would be...

This PR allows specifying positional arguments names in `.command.types(object)`. This is what the example from the wiki would look like once this is merged: ```js vorpal .command('stringify ') .option('-a, --amount...

I am using your library in a custom project which does not adhere to usual UNIX standards when naming the commands. It uses commands akin to PowerShell commandlets as in...

Hello! Thank you for this great library! However, the rejected promises, which are returned from the commands are handled incorrectly. I've created a simple repository to demonstrate the issue: https://github.com/slavafomin/vorpal-promise-rejection-issue...

I am working on a command line application based on Vorpal. Is there a way to allow (and list in the help) commands depending on a context. For instance I...

Hi Creating multiple instances using Vorpal() has issues in auto-generated help even when .show() is not called and .hide() has no effect on it. it will list all helps from...

By default, the underlying command parser package (minimist), converts strings that look like numbers to actual numbers. This causes all kind of problems since it's also going to randomly convert...

Creating a Vorpal instance attaches a callback to the event "vorpal_ui_keypress". So running code like this will give you a warning. ``` const Vorpal = require("Vorpal"); var vorpalInst; for (var...

In a multi-user environment, this is a blocker. Multiple users will end up trying to use the same location for their independent uses of vorpal based apps. At the moment,...