stdio
stdio copied to clipboard
The de facto standard input/output manager for Node.js
This is a _really_ useful module which I want to keep using. I was using it a lot but haven't been doing much node in 2/3 yrs. Version 0.2.7 (...
## Bug Fix this #46 ## Brief description Has been added a condition to check if is last `rawParameter` to save it in `result` variable, by this way we can...
## Description When pass the parameter that have multiple variable args as last parameter it just return `true` as response for this parameter Follow the bellow example: ```js # myfile.js...
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.1 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
See: ```js const stdio = require('stdio'); var args = stdio.getopt({ foo: { args: 1 , required: false}, }); console.log(args); ``` ``` # node test_stdio.js Option "--foo" requires 1 arguments, but...
See this sample code: ```js const stdio = require('stdio'); var args = stdio.getopt({ foo: { args: '*' }, baz: { }, }); console.log(args); ``` It return correct: ``` # node...
I think it would be nice if we could set a default value for each argument. Also a range of allowable values or a set of allowable words can be...
Thanks for good project. I thinks better always or optional there is `--help -h` in output of help args.
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.2 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
It's common for long options to contain `-`. I can't figure out a way to add a name that contains a dash. I was hoping either `_` gets converted to...