coa icon indicating copy to clipboard operation
coa copied to clipboard

Command-Option-Argument: Get more from defining your command line interface

Results 31 coa issues
Sort by recently updated
recently updated
newest added

One could define alias as `cb = create -b` and invoke `bem cb block`. COA should resolve `cb` alias and invoke `bem create -b block` command. Also think of shell...

evaluating
enhancement

Hi! I'm using coa in `my-script.js` this way: ``` js require('coa').Cmd() .name(process.argv[1]).title('Makes awesome things').helpful() .opt() .name('awesomeOpt') .title('My awesome option') .long('awesome-opt') .arr() .def(['1', '2']) .end() .act(opts => console.log(opts)) .run(); ``` Then...

bug
accepted

Atm there are few different ways of using namespaces: `{COA.Cmd}`, `{Cmd}`, etc. Need to choose one.

documentation
accepted
chore

Rel: #66

documentation
accepted
chore

See #28. Also refactoring of completion logic. **Work in progress.**

Hi, I am Joyce and I am working on behalf of Google and the [OpenSSF][ossf] to help essential open source projects to improve their supply-chain security. Considering how veged/coa has...