Created
May 11, 2019 06:14
-
-
Save carsonfarmer/e11524ef473a30b259bafa2af5bd2fb8 to your computer and use it in GitHub Desktop.
Initial stub cmd-line tool
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
#!/usr/bin/env node | |
const cli = require('cac')('txtl') | |
const { log } = console | |
// Create 'default' chat command | |
cli.command('', 'Starts an interactive chat session in a thread.') | |
.action((opts) => { | |
log('do something') | |
}) | |
.option('--thread [thread]', 'Thread ID. Omit to use the \'default\' thread.', { | |
default: 'default', | |
type: [String] | |
}) | |
// Display help message when `-h` or `--help` appears | |
cli.help() | |
// Display version number when `-v` or `--version` appears | |
cli.version('1.0.0') | |
// Parse stdin | |
cli.parse() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment