0.1.1 • Published 14 years ago
flatiron-cli-ok v0.1.1
flatiron-cli-ok
Encapsulated logic for showing command status in flatiron CLI apps
Installation
npm install flatiron-cli-okUsage
At its core flatiron-cli-ok is a broadway-compatible plugin which can be used by any flatiron cli application
var flatiron = require('flatiron')
, app = flatiron.app;
app.name = 'app.js';
app.use(flatiron.plugins.cli, {
usage: 'A simple CLI app using flatiron-cli-ok'
});
app.use(require('flatiron-cli-ok'));
app.start();If you run the above script
➤ node app.jsThe output will start with
info: Welcome to app.js
info: It worked if it ends with app.js okThe output will end with
- If the command executed successfully
info: app.js ok- If the command executed unsuccessfully
info: app.js not okIMPORTANT
You have to call the callback in the command, if you want this plugin to show the status
If you like this project, please watch this and follow me.
Testing
npm testContributors
Here is a list of Contributors
TODO
I accept pull requests and guarantee a reply back within a day
License
MIT/X11
Bug Reports
Report here. Guaranteed reply within a day.
Contact
Pavan Kumar Sunkara (pavan.sss1991@gmail.com)