xusl 2be7077787 初始化 пре 1 година
..
.vscode 2be7077787 初始化 пре 1 година
lib 2be7077787 初始化 пре 1 година
LICENSE 2be7077787 初始化 пре 1 година
README.md 2be7077787 初始化 пре 1 година
package.json 2be7077787 初始化 пре 1 година
yarn.lock 2be7077787 初始化 пре 1 година

README.md

microargs node version Build Status npm version

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

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

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

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

}