all files / examples/ app.js

62.5% Statements 5/8
100% Branches 0/0
100% Functions 0/0
62.5% Lines 5/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24                                     
/**
 * Simple use on Lark
 **/
'use strict';
 
const debug   = require('debug')('lark.examples.app');
 
const Lark    = require('..');
 
process.mainModule = module;
 
debug('loading ...');
 
const app = new Lark({
    static: {
        enable: false
    }
});
 
module.exports = app.listen(4000);
app.listen(4001);
 
debug('loaded!');