UNPKG

hapi

Version:

HTTP Server framework

10 lines (6 loc) 231 B
// Plugin registration exports.register = function (pack, next) { var route = { path: '/test', method: 'GET', handler: function () { this.reply('testing123'); } }; this.select('test').route(route); return next(); };