UNPKG

565 BJavaScriptView Raw
1//- JavaScript source code
2
3//- client.js ~~
4// ~~ (c) SRW, 28 Jun 2012
5// ~~ last updated 12 Nov 2012
6
7(function () {
8 'use strict';
9
10 // Pragmas
11
12 /*jslint indent: 4, maxlen: 80, node: true */
13
14 // Declarations
15
16 var qm;
17
18 // Definitions
19
20 qm = require('lib/main');
21
22 // Invocations
23
24 qm.launch_client({
25 hostname: '127.0.0.1',
26 port: 8177
27 });
28
29 // That's all, folks!
30
31 return;
32
33}());
34
35//- vim:set syntax=javascript: