-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handling top level command #141
Comments
OK, if I remove the db connection, it prints help, I'll shuffle my code around. |
No it doesn't actually. If I just run Had to resort with wrapping my command callbacks with a wrapper function that sets a boolean |
Hey @KidkArolis you can show the Help on your main command (with no arguments) with this function: Does this fix your problem? |
No. I will post a reproducible example shortly.
…On Sat, 29 Jun 2019 at 12:21, Marvin Mieth ***@***.***> wrote:
Hey @KidkArolis <https://github.com/KidkArolis> you can show the Help on
your main command (with no arguments) with this function: .showHelp(). It
is listed in the Docs:
[image: Bildschirmfoto 2019-06-29 um 12 20 01]
<https://user-images.githubusercontent.com/8714775/60382775-40720000-9a68-11e9-8403-f3c5e09a3350.png>
Does this fix your problem?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#141?email_source=notifications&email_token=AACPGWAD4LT6RR7WQA3M7YTP44ZRLA5CNFSM4HZJ4NO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODY3WG6Y#issuecomment-506946427>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AACPGWG2DUNWZRVPRVLTP53P44ZRLANCNFSM4HZJ4NOQ>
.
|
Here's what I mean, taking the example from README (slightly modified): #!/usr/bin/env node
const args = require('args')
args
.option('port', 'The port on which the app will be running', 3000)
.option('reload', 'Enable/disable livereloading')
.command('serve', 'Serve your static site', serve, ['s'])
const flags = args.parse(process.argv)
function serve () {
console.log('serving...')
} This works fine:
But how do I make sure that the following executions print help:
I'm thinking.. perhaps loop over |
Maybe I'm missing something, but how do I handle the top level command?
This will run a or b if I run
./cmd a
or./cmd b
.But if I run
./cmd
, it's hanging (cause my script opens db connection), how do Ia) print help or
b) execute some code?
The text was updated successfully, but these errors were encountered: