Last active
August 29, 2015 14:11
-
-
Save gergelyke/05382073290bdcf3c657 to your computer and use it in GitHub Desktop.
Register plugin hapi
This file contains hidden or 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
var Hapi = require('hapi'); | |
var server = new Hapi.Server(); | |
server.connection({ | |
port: 3000 | |
}); | |
server.register({ | |
register: require('myplugin'), | |
options: { | |
message: 'hello' | |
} | |
}, function (err) { | |
if (err) { | |
throw(err); | |
} | |
server.start(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Missing a colon after
register
on Line 10