0.1.1 • Published 7 years ago

@repositive/hapi-route-loader v0.1.1

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

@repositive/hapi-route-loader

Load hapi routes into the hapi router from a folder

How to use

First define your routes in any folder you like. Your route module must comply with the route schema definition for the module to be loaded:

export interface RouteConfiguration {
  path: string;
  method: HTTP_METHODS_PARTIAL | '*' | (HTTP_METHODS_PARTIAL | '*')[];
  vhost?: string;
  handler?: string | RouteHandler | RouteHandlerPlugins;
  config?: RouteAdditionalConfigurationOptions | ((server: Server) => RouteAdditionalConfigurationOptions);
}

An example of a route:

/* /src/routes/hello.ts */

export const method = 'get';
export const path = '/';

export function handler(req: any, rep: any) {
  rep('Hello World');
}

Then load your routes with the plugin:

import { Server } from 'hapi';
import { promisify } from 'bluebird';
import routeLoader from '@repositive/hapi-route-loader';


async function startApi() {
  const server = new Server();
  const register: any = promisify(server.register, {context: server});
  const start: any = promisify(server.start, {context: server});
  
  server.connection({
    port: 3000
  });
  
  await register({
    register: routeLoader,
    options: {
      /**
       *  match needs to point to the compiled js files that you want to load.
       */
      match: `dist/routes/**/*.js`
    }
  });
  
  await start();

  console.log('API initialized');
}

Notes

The repository has git hooks on precommit and prepush. You need to pass the linting criteria before commit and the test and coverage criteria before push. The test requirements are 80% overall.

0.1.1

7 years ago

0.1.0

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago