A library for easily creating observable CLI tasks with support for commands, arguments, and options.
.idea | ||
ts | ||
.gitignore | ||
.travis.yml | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md | ||
test.js |
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