caoge c760052ff9 机车状态修改 8 ay önce
..
.idea c760052ff9 机车状态修改 8 ay önce
.eslintrc.json c760052ff9 机车状态修改 8 ay önce
.npmignore c760052ff9 机车状态修改 8 ay önce
.travis.yml c760052ff9 机车状态修改 8 ay önce
LICENSE c760052ff9 机车状态修改 8 ay önce
README.md c760052ff9 机车状态修改 8 ay önce
index.js c760052ff9 机车状态修改 8 ay önce
package.json c760052ff9 机车状态修改 8 ay önce
yarn.lock c760052ff9 机车状态修改 8 ay önce

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 }

}