Set up and run a hapi server using yaml/json files from a config directory
npm install hapi-confi
var Hapi = require('hapi');
var hapiConfi = require('hapi-confi');
hapiConfi(Hapi, options, function(err, server, config) {
/* server is a configured hapi server here */
server.start(function(){
});
}
configPath- relative to 'cwd', defaults to 'conf/'server- standard hapi server configuration options, see hapi docs for available options.
before- list of event handlers to fire on a 'before' eventlogging- list of reporters to use from 'good.js', the hapi logging libraryreporters- any 'good-' reporters to use for logging (e.g. good-console)
authPlugins- list of auth pluginsstrategies- list of strategies of the form:providerschememodeoptionsprofile-
plugins- list of hapi plugins that will be added to your server through hapi.register()options- options to pass when the plugin is registered
views- list of view engines to register with hapi.views()engines- list of modules to import and pass to viewvalidator- optional validator library for hapi v19+ (usually '@hapi/joi')