caoge c760052ff9 机车状态修改 7 月之前
..
.idea c760052ff9 机车状态修改 7 月之前
.eslintrc.json c760052ff9 机车状态修改 7 月之前
.npmignore c760052ff9 机车状态修改 7 月之前
.travis.yml c760052ff9 机车状态修改 7 月之前
LICENSE c760052ff9 机车状态修改 7 月之前
README.md c760052ff9 机车状态修改 7 月之前
index.js c760052ff9 机车状态修改 7 月之前
package.json c760052ff9 机车状态修改 7 月之前
yarn.lock c760052ff9 机车状态修改 7 月之前

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 }

}