27 lines
815 B
JavaScript
Executable File
27 lines
815 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
var program = require('..');
|
|
|
|
program
|
|
.version('0.0.1')
|
|
.command('install [name]', 'install one or more packages')
|
|
.command('search [query]', 'search with optional query')
|
|
.command('list', 'list packages installed')
|
|
.parse(process.argv);
|
|
|
|
// here .command() is invoked with a description,
|
|
// and no .action(callback) calls to handle sub-commands.
|
|
// this tells commander that you're going to use separate
|
|
// executables for sub-commands, much like git(1) and other
|
|
// popular tools.
|
|
|
|
// here only ./pm-install(1) is implemented, however you
|
|
// would define ./pm-search(1) and ./pm-list(1) etc.
|
|
|
|
// Try the following:
|
|
// ./examples/pm
|
|
// ./examples/pm help install
|
|
// ./examples/pm install -h
|
|
// ./examples/pm install foo bar baz
|
|
// ./examples/pm install foo bar baz --force
|