896 B
896 B
smartcli
nodejs wrapper for CLI related tasks
Buildstatus/Dependencies
Install the package
npm install smartcli
Usage
var smartcli = require("smartcli");
//returns true for terminal command "node myjs.js jazz"
smartcli.checkCommand('jazz');
/**
* returns an object for terminal command "node myjs.js --myoption something like so
* {
* name: 'myoption',
* specified: true,
* value: 'something'
* }
*/
smartcli.getOption('myoption');
``
Cheers
Phil from Lossless Digital