Skip to content

Instantly share code, notes, and snippets.

@knownasilya
Created March 17, 2014 18:06
Show Gist options
  • Save knownasilya/9604886 to your computer and use it in GitHub Desktop.
Save knownasilya/9604886 to your computer and use it in GitHub Desktop.
commander
var cli = require('commander');
cli.command('new <type> <name>')
.description('Creates a new type of name')
.action(function (type, name) {
console.log(type, name);
});
cli.parse(process.argv);
// node test.js new controller Hello => controller Hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment