You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
var optimist = require('./../index');
|
|
|
|
var argv = optimist.usage('This is my awesome program', {
|
|
'about': {
|
|
description: 'Provide some details about the author of this program',
|
|
required: true,
|
|
short: 'a',
|
|
},
|
|
'info': {
|
|
description: 'Provide some information about the node.js agains!!!!!!',
|
|
boolean: true,
|
|
short: 'i'
|
|
}
|
|
}).argv;
|
|
|
|
optimist.showHelp();
|
|
|
|
console.log('\n\nInspecting options');
|
|
console.dir(argv);
|