Skip to content

Instantly share code, notes, and snippets.

@nlf
Created December 24, 2014 22:14
Show Gist options
  • Save nlf/8b6e36d35adc4a9639b7 to your computer and use it in GitHub Desktop.
Save nlf/8b6e36d35adc4a9639b7 to your computer and use it in GitHub Desktop.
var Hapi = require('hapi');
var server = new Hapi.Server();
server.connection();
if (!module.parent) {
server.start(function () {
console.log('started server');
});
}
module.exports = server;
var server = require('./server');
server.inject();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment