thing
v1.0.1
Published
Command line all the things!
Downloads
17
Readme
Thing
Command line all the things
Install
npm install thing --save
Usage
var thing = require('thing');
var cli = thing();
cli.command('someCommand')
.handler(function () {
// do stuff
});
cli.flag('-t')
.handler(function () {
// execute on a flag
});
Run Tests
npm install
npm test