- Flags in kebab-case are converted to camelCase, eg:
--foo-bar fooresults in{ fooBar: 'foo' } - Preserve arguments after
--, eg:-- npm testresults in{ '--': ['npm', 'test'] } - Separate flags and input, eg:
./bin foo -wresults in{ input: ['foo'], flags: { w: true } }
This is similar to meow, but I sometime just want to parse argv without being a real CLI app.
yarn add minimostconst minimost = require('minimost')
minimost(process.argv.slice(2), options)minimist options, options['--'] is true by default here.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
minimost © egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).
egoist.sh · GitHub @egoist · Twitter @_egoistlily