Created
March 13, 2015 12:30
-
-
Save AdamMagaluk/2b006dfa7a83a9cd010e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var program = require('commander'); | |
program | |
.command('create [name]', 'install one or more packages') | |
.command('delete [query]', 'search with optional query') | |
.parse(process.argv); | |
console.log(program.args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var program = require('commander'); | |
program | |
.version('0.0.1') | |
.option('-C, --chdir <path>', 'change the working directory') | |
program | |
.command('stacks [cmd]', 'install one or more packages') | |
program.parse(process.argv); | |
if (!program.args.length) { | |
program.help(); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment