n-cli
a usefull toolset for node commandline applications
Installation
$ npm install --save n-cli
Usage
#!/usr/bin/env node
"use strict";
var Cli = new require("n-cli");
var cli = new Cli({
silent: false,
handleUncaughtException : true,
handledRejectionPromiseError : true,
runcom : ".myapprc"
});
cli.on("unicorn", function(){
this.argv.notNull("rainbow");
this.log(this);
});
cli.runcom(function(rc){
this.log(rc);
});
$ your-client-app unicorn --rainbow forever;
{
prettyError:
PrettyError { },
init:
{ appname: 'node-cli-example-app-1',
handleUncaughtException: true },
argv: { _: [ 'unicorn' ], rainbow: 'e', notNull: [Function: bound ] },
config:
{ settings: {},
appFolder: 'c:\\git\\n-cli\\examples',
appPackageFilename: 'c:\\git\\n-cli\\examples\\package.json',
appPackage: {},
appName: 'node-cli-example-app-1',
dataFolder: 'C:\\Users\\User\\AppData\\Roaming\\node-cli-example-app-1',
filename: 'C:\\Users\\User\\AppData\\Roaming\\node-cli-example-app-1\\config.json' },
color:
Chalk { },
Error: [Function: NodeCliError],
minimist: [Function]
}
$ your-client-app unicorn --rainbow ;
Build in functions
ncli adds automatically some methods to your commandline application.
$ your-client-app -v;
Output COMMANDLINE-ARGUMENTS.md in your projects root folder
$ your-client-app help;
API
Demo
https://www.youtube.com/watch?v=m53SlSaP6cs
License
MIT © s-a