Lam Posted on May 14, 2021 Commander.Js Cheat Sheet #commanderjs #cheatsheet Other useful things process.exit(0); Enter fullscreen mode Exit fullscreen mode Commands cli.outputHelp(); cli.args == ["hello"]; Enter fullscreen mode Exit fullscreen mode Help .on('--help', function() { console.log(''); }) Enter fullscreen mode Exit fullscreen mode Options cli .version(require('../package').version) .usage('[options] <command>') .option('-w, --words <n>', 'generate <n> words') .option('-i, --interval <n>', 'interval [1000]', 1000) .option('-s, --symbols', 'include symbols') .parse(process.argv); Enter fullscreen mode Exit fullscreen mode Initialize var cli = require('commander'); Enter fullscreen mode Exit fullscreen mode Reference Commander.Js Cheat Sheet - Cheat Sheet Maker Top comments (0) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink. Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)