Last active
December 25, 2015 16:39
-
-
Save tribou/02833e0d0593d88a6237 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a basic Hapi.js server | |
require('babel-register')({ | |
presets: ['es2015', 'react'], | |
}); | |
var Hapi = require('hapi'); | |
var dateFormat = require('dateformat'); | |
var format = "dd mmm HH:MM:ss"; | |
// Basic Hapi.js connection stuff | |
var server = new Hapi.Server(); | |
server.connection({ | |
host: 'localhost', | |
port: 8000 | |
}); | |
// Register the inert and vision Hapi plugins | |
// As of Hapi 9.x, these two plugins are no longer | |
// included in Hapi automatically | |
// https://github.com/hapijs/hapi/issues/2682 | |
server.register([{ | |
register: require('inert') | |
}, { | |
register: require('vision') | |
}], function(err) { | |
if (err) return console.error(err); | |
// Add the React-rendering view engine | |
server.views({ | |
engines: { | |
jsx: require('hapi-react-views') | |
}, | |
relativeTo: __dirname, | |
path: 'views' | |
}); | |
// Add a route to serve static assets (CSS, JS, IMG) | |
server.route({ | |
method: 'GET', | |
path: '/{param*}', | |
handler: { | |
directory: { | |
path: 'assets', | |
index: ['index.html'] | |
} | |
} | |
}); | |
// Add main app route | |
server.route({ | |
method: 'GET', | |
path: '/', | |
handler: { | |
view: 'Default' | |
} | |
}); | |
server.start(function() { | |
console.log(dateFormat(new Date(), format) + ' - Server started at: ' + server.info.uri); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment