0.2.1 • Published 6 years ago

qwcli v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Example

const CLI = require("qwcli");
const assign = Object.assign;

var cli = CLI(),
    opts = {cmd: "", cmdopts: [], verbosity: 0, logfile: ""},
    parser, args;

cli.bind(CLI.head, (node, script) => assign(opts, {node:node, script:script}));
cli.bind(["-v", "--verbose"], () => opts.verbosity++);
cli.bind(["-L", "--log"], file => opts.logfile = file);
cli.bind(CLI.lead, cmd => opts.cmd = cmd);
cli.bind(CLI.rest, opts => opts.cmdopts = opts);

parse = cli.parser();
args = parse(["/bin/node", "script.js", "-v", "--log", "my.log", "apple", "foo");

assert(opts.node === "/bin/node");
assert(opts.script === "script.js");
assert(opts.verbosity === 1);
assert(opts.logfile === "my.log");
assert(opts.cmd = "apple");
assert(opts.cmdopts[0] === "foo");

Things To Ponder

cmd -v foo -v           # different -v options
cmd --help foo --help   # same --help option
0.2.1

6 years ago

0.2.0

6 years ago

0.1.4

6 years ago

0.1.2

6 years ago

0.1.0

7 years ago