vorpal icon indicating copy to clipboard operation
vorpal copied to clipboard

Node's framework for interactive CLIs

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

is there a recommended way to do subcommands for modes?

say I want to port vorpal to the web, what would I need to do?

Has anyone started to create TypeScript definitions for Vorpal? I am going to start (since this library is worth the extra work), but wanted to see if anyone already begun....

Using [Blessed](https://github.com/chjj/blessed) in conjunction with Vorpal like this: ```javascript const blessed = require('blessed') const vorpal = require('vorpal')() const program = blessed.program() // Commenting this out means normal behaviour vorpal .command('test')...

This is an issue when using vorpal in Vantage, but is, I think, fundamental an issue with vorpal itself. Vorpal's `_commandSetCallback` only logs errors to local sessions, and `validate` returns...

The problem is when write the first letters and press TAB button twice, the main command repeat (I didn't try with more subcommands) Example: ``` delimeter$ command1 [tab] [tab] command1...

When you use some commands chained with pipe second command's validate function is triggered by it doesn't reject execution. Here's example: ``` lorem 5 -u paragraphs | note insert or...

I created this video demonstrating the problem https://www.useloom.com/share/40a9509bf03248d586d0357894f0edf4 I would like to use tab completion to access a directory something like this: `node test/src/dev/node/foo.test.js` but using Vorpals autocomplete functionality does...

Currently logging is only a simple `log` command. This has to be improved somehow, as it's too limiting. For instance, I can't log two things on the same line (`Starting...

when not implementing a catch hook, typing in a command of a group gives you the help for it's subcommands. if however you implement a catch hook, the catch hook...

bug
help wanted