Description
A simple package, which registers all the plugins at a single point. The package is mainly developed to avoid repetation of code and follow DRY principle.
Please feel free to raise issues for any queries
Install
npm install hapi-server-plugin-helper
Usage
Suppose if you have two or more plugins. Define the plugins and its options, and pass the plugins and options as array.
;; const monitorServerOptions = ops: interval: 1000 reporters: consoleReporter: module: 'good-squeeze' name: 'Squeeze' args: log: '*' response: '*' module: 'good-console' 'stdout' httpReporter: module: 'good-squeeze' name: 'Squeeze' args: error: '*' module: 'good-http' args: /** production-url, { wreck: { headers: } }* */ ; const disinfectOptions = disinfectQuery: true disinfectParams: true disinfectPayload: true; ; // In your server.js file, invoke registerPlugins method// First argument takes server instance// Second argument takes an array of plugins// Third argument takes an array of optionsserver = await ;