Neatly construct nodejs console arguments as an object.
npm install greenGreen
=========
Neatly construct nodejs console arguments as an object.
npm install green --save
> node source.js -h world -t -foo bar -z -b 32
- will produce the following object as args in your script
{
h : 'world',
t : true,
foo : 'bar',
z : true,
b : 32
}
- integer and string parsing is maintained
- use -option without post value to set it to true.
var green = require('green').args;
console.log(green);
* 0.1.3 Tested
* 0.1.2 Change module name
* 0.1.1 Reflect readme with details
* 0.1.0 Initial release