Framework for building command line applications with Node.js
A full-featured framework for building command line applications (cli) with node.js
$ npx @donmccurdy/caporal --help$ caporal.createCommand('greet').argument('<name>').action(({name}) => console.log(`Hello ${name}`))$ prog.command('deploy').command('build').command('test')$ myapp --help$ caporal.argument('<file>').option('--format <type>', 'Choose format').action(...)