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 would like to suggest a new feature for vorpal (forgive me if i didn't see that this is implemented in the documentation or there is another issue with this...

After executing a long command, it appears on the next line and overlaps with the command prompt. Typing removes it, but you can't effectively see your previous command.

My Vorpal options are like so: ``` Commands: help [command...] Provides help for a given command. exit Exits application. pwd echo present working directory run [file] run a single test...

vorpal.localstorage has wrong type on the instance. It does not have setItem and getItem

I've ran `npm audit` and it's found 23 vulnerabilities ! 13 low, 9 high and 1 critical (`growl` - https://nodesecurity.io/advisories/146)

The output looks like this: ``` js (^C again to quit) function (str) { if (str === undefined) { return this._delimiter; } this._delimiter = String(str).trim() + ' '; if (this.isLocal())...

bug
help wanted

if you use an emoji in the delimiter (why not?), the cursor behaves weirdly: ``` vorpal .delimiter('💩 $') ``` typing in the first letter does not move the cursor, but...

As discussed in #272: The focus of this PR will be on re-writing Vorpal in TypeScript without adding/changing any functionality. @milesj: > Would also make sure the deps are up...

LK"I Hi All, Is there any way to change the vorpal's instance stdin/stdout? so for instance all the current instance output go into some file stream? or "pushing" data to...

Hello ! I am trying to use vorpal to make a cli program for downloading video with youtube-dl. I'm trying to make a "yt" command : yt ``` vorpal.command('yt ',...