yargs-promise
Use the headless yargs parser with promises!
Install
npm
npm install --save yargs-promise
yarn
yarn add --save yargs-promise
Usage
Instead of using a callback with yargs.parse, use a promise chain: parser.parse(text).then().catch()
.
Examples:
const yargs = ;const YargsPromise = ; // create the customized yargs parserconst parser = yargs; // setup command & command handlerparser ; // parse text input and use the returned promiseparser ;
Customizing context example
const yargs = ;const YargsPromise = ; const parser = yargs // customize context {} foo: 'bar' ; parser ;
Need access to yargs object? Work with the direct yargs
object prior to passing it into the yargs-promise constructor. For convenience, it is also available at parser.yargs
.
How it works
This library does three things:
- wraps the yargs.parse in a new Promise
- no more callbacks
- attaches that Promises
resolve
&reject
methods on the context passed to yargs.parse- this enables you to call
argv.resolve
orargv.reject
in command handler function
- this enables you to call
- handles default behavior
- from Error validation
- output from internal commands like
.help()
- unhandled output from custom handler
Checkout the source code or tests for more information.
Why
Building chatbots requires parsing and handling text input. This wraps up the most common needs I've come across for handling errors, simple commands, and commands with handlers.