How to use the host function from commander

Find comprehensive JavaScript commander.host code examples handpicked from public code repositorys.

192
193
194
195
196
197
198
199
200
201
                flows(result[i].o.mac, 'in');
            }
        });
    });
} else {
    ip = program.host;

    console.log("Looking up host ", ip);
    watcher.getHost(ip, (err, result2) => {
        result2.getHost(ip, (err, result) => {
fork icon117
star icon475
watch icon48

27
28
29
30
31
32
33
34
35
36

async function checkEnv() {
    try {
        const alfrescoJsApi = new alfrescoApi.AlfrescoApiCompatibility({
            provider: 'ECM',
            hostEcm: program.host
        });

        await alfrescoJsApi.login(program.username, program.password);
    } catch (error) {
fork icon259
star icon289
watch icon104

+ 3 other calls in file

7
8
9
10
11
12
13
14
15
app.option('-h, --host [host]', 'The host of the onramp server');

app.parse(process.argv);

(function main(){
        var host = app.host;

        // Create the onramp instance at the localhost
        var onramp = Onramp.create({host: host});
fork icon13
star icon68
watch icon10

25
26
27
28
29
30
31
32
33
34
        process.exit(1);
}
this.config = await ApiConfig.loadPreferredConfig();
if (Commander.host) {
        console.log(`overriding broadcaster host with ${Commander.host}`);
        this.config.broadcastEngine.codestreamBroadcaster.host = Commander.host;
}
if (Commander.port) {
        console.log(`overriding broadcaster port with ${Commander.host}`);
        this.config.broadcastEngine.codestreamBroadcaster.port = Commander.port;
fork icon33
star icon61
watch icon12

54
55
56
57
58
59
60
61
62
63
64
  )
  .option("--es6", "Use es6 code")
  .option("--es5", "Use es5 code")
  .parse(process.argv);


const host = program.host;
const port = program.port;
const domainSocket = program.domainSocket;
const ssl = program.ssl;
let type = program.type;
fork icon0
star icon1
watch icon0

897
898
899
900
901
902
903
904
905
906
const numberOfDefinedHosts = [program.host, program.grid, program.gridId].filter(Boolean).length;
if (numberOfDefinedHosts > 1) {
    throw new ArgError('please define exactly one of --grid or --grid-id or --host');
}

if (program.host && program.host.includes('/')) {
    if (!/^(f|ht)tps?:\/\//i.test(program.host)) {
        program.host = `http://${program.host}`;
    }
    program.host = url.parse(program.host).hostname;
fork icon0
star icon0
watch icon0

+ 24 other calls in file

237
238
239
240
241
242
243
244
245
246

if (program.auth) {
  headers.Authorization =
    'Basic ' + Buffer.from(program.auth).toString('base64');
}
if (program.host) headers.Host = program.host;
if (program.protocol) options.protocolVersion = +program.protocol;
if (program.origin) options.origin = program.origin;
if (!program.check) options.rejectUnauthorized = program.check;
if (program.ca) options.ca = fs.readFileSync(program.ca);
fork icon0
star icon0
watch icon0

+ 5 other calls in file

39
40
41
42
43
44
45
46
47
48
49
  .option('--ssl', 'use SSL transport')
  .option('--promise', 'test with promise style functions')
  .option('-t, --type <type>', 'Select server type (http|multiplex|tcp|websocket)', 'tcp')
  .parse(process.argv);


var host = program.host;
var port = program.port;
var domainSocket = program.domainSocket;
var type = program.type;
var ssl = program.ssl;
fork icon0
star icon0
watch icon0

Other functions in commander

Sorted by popularity

function icon

commander.Option is the most popular function in commander (1786 examples)