Zhouyiping 5a7c95461a first commit 3 днів тому
..
.idea 5a7c95461a first commit 3 днів тому
.eslintrc.json 5a7c95461a first commit 3 днів тому
.npmignore 5a7c95461a first commit 3 днів тому
.travis.yml 5a7c95461a first commit 3 днів тому
LICENSE 5a7c95461a first commit 3 днів тому
README.md 5a7c95461a first commit 3 днів тому
index.js 5a7c95461a first commit 3 днів тому
package.json 5a7c95461a first commit 3 днів тому
yarn.lock 5a7c95461a first commit 3 днів тому

README.md

microargs node version Build Status npm version

CLI arguments micro parser. Only 25 lines of code, no dependencies.

#!/usr/bin/env node
const args = require('microargs')(process.argv.slice(1));
console.dir(args);

``` $ script.js -a --foo=bar --boo abc def {

params: ['abc', 'def'],
options: { a: true, foo: 'bar', boo: true }

}