hexo/node_modules/optimist/example/usage-options.js

19 lines
458 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
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');
2023-09-25 15:58:56 +08:00
console.dir(argv);