-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathargument.js
More file actions
23 lines (18 loc) · 648 Bytes
/
argument.js
File metadata and controls
23 lines (18 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env node
// This example shows specifying the command arguments using argument() function.
const { Command } = require('commander');
const program = new Command();
program
.name('connect')
.argument('<server>', 'connect to the specified server')
.argument('[user]', 'user account for connection', 'guest')
.description('Example program with argument descriptions')
.action((server, user) => {
console.log('server:', server);
console.log('user:', user);
});
program.parse();
// Try the following:
// node argument.js --help
// node argument.js main.remote.site
// node argument.js main.remote.site admin