Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rumpl/cli-app

Simple command line application helper
https://github.com/rumpl/cli-app

Last synced: 15 days ago
JSON representation

Simple command line application helper

Awesome Lists containing this project

README

        

# cli-app

Simple command line application helper. Helps you define actions for specific commands.

# Installation

```bash
npm install cli-app
```

# Usage

```javascript
var app = require('cli-app');

app.name = 'awesome';

app.command('command', 'Put some description', function() {
console.log('YAY!');
});

app.command('commandWithParams', 'Some other description', function(param1, param2) {
console.log('YAY too!');
console.log('Got params: ', param1, param2);
});

app.run();
```

When run:
```
$ node app.js command
```
You will see `YAY!`

Or:
```
$ node app.js commandWithParams Hello World
Got params: Hello World
```

**Bonus: free usage!**

```
$ node app.js wat
Undefined command: wat
Usage: awesome [COMMANDS] [OPTIONS]

command Put some description
command2 [param1, param2] Some other description
```

# License

[MIT](http://mit-license.org/rumpl)