Hapi-ember is a simple Hapi.js plugin to help you route to your Ember.js application using Hapi.js.
Install using NPM:
npm install hapi-ember
To use hapi-ember, simply register the plugin with your Hapi.js server:
var server = new Hapi.Server();
server.connection({port: 1337});
server.register({
register: require('hapi-ember'),
options: {
directory: '/path/to/your/project'
}}, function(err){
if(err) throw new Error(err)
console.log('hapi ember!');
});
directory
(required) - The path to your Ember application.
path
(optional) - The path you would like Hapi to use when routing to your application. Defaults to "/"
Pull requests and issues are welcome.