2.0.0 • Published 8 years ago

hapi-handlers v2.0.0

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

hapi-handlers

Npm Version Build Status Dependencies Dev dependencies

NPM

Plugin to autoload handlers based on patterns.

How to use:

  • Install hapi-handlers npm package in your project our plugin. npm i hapi-handlers
  • Register plugin in your hapi server:

Registering

const server = new Hapi.Server();

server.connection();

server.register({
    register: require('hapi-handlers'),
    options: {
        includes: 'path/to/**/*Handlers.js' // uses glob to include files
    }
}, (err) => {
  // continue application
});

manifest style:

registrations: [
    ...
    {
        plugin: {
            register: 'hapi-handlers',
            options: {
                includes: 'path/to/**/*Handlers.js'
            }
        }
    }
];

Your handlers are available in your routes using the handle file name:

server.route({
    method: 'GET',
    path: '/route',
    config: {
        handler: {
            handlerName: {} // assuming your handle file is handlerName
        }
    }
})

Options

includes

Required Type: string / array

The glob pattern you would like to include

ignores

Type: string / array

The pattern or an array of patterns to exclude

relativeTo

Type: string

The current working directory in which to search (defaults to process.cwd())

Handler Signature

'use strict';

module.exports = (route, options) => {

    return (request, reply) => {

        return reply({
            message: 'Hello World.'
        });
    };
};
2.0.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago