1.0.9 • Published 7 years ago

hapiour v1.0.9

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

This repositroy is no longer under active development.

Consider using hapiour-decorators.

------------------------------------------------------

Build Status npm version npm downloads dependencies npm devDependencies npm license

hapiour

Typescript decorators for Hapi

Install

npm install -g typescript
npm install --save hapi
npm install --save hapiour

Example

Files

src/
  -> main.ts
  -> app.ts
  -> beer.module.ts
  -> greetings.plugin.ts

Declare your app

src/app.ts

import { Server } from 'hapi'
import { App, IApp, Inject, Plugins } from 'hapiour'
import { Beer } from './beer.module'
import { GreetingsPlugin } from './greetings.plugin'

@App({
  port: 3000
})
@Inject([Beer])
@Plugins([GreetingsPlugin])
export class MyApp implements IApp {

  private server: Server

  public constructor(server: Server) {
    this.server = server
  }

  public onPluginInit(err: any, done: () => void) {
    if (err) {
      console.log('Init error', err)
    }
    console.log('Plugin init')
    done()
  }

  public onInit(): void {
    console.log('Server init done')
  }

  public onStart(): void {
    console.log('Server running at:', this.server.info.uri)
  }

}

Declare a module

src/beer.module.ts

import { Route, Module } from 'hapiour'
import { Request, IReply } from 'hapi'

@Module({
  basePath: '/beer'
})
export class Beer {

  private beerCount: number

  public constructor() {
    this.beerCount = 0
  }

  @Route({
    method: 'GET',
    path: '',
    config: {}
  })
  public getABeer(request: Request, reply: IReply) {
    this.beerCount++
    reply({
      'data': 'Hey! Take this beer !'
    })
  }

  @Route({
    method: 'GET',
    path: '/count',
    config: {}
  })
  public getCount(request: Request, reply: IReply) {
    reply({
      'data': this.beerCount
    })
  }

  @Route({
    method: 'DELETE',
    path: '/count',
    config: {}
  })
  public resetCount(request: Request, reply: IReply) {
    this.beerCount = 0
    reply({
      'data': 'Done'
    })
  }

}

Declare a plugin

src/greetings.plugin.ts

import { Server } from 'hapi'

interface IRegister {
  (server: Server, options: any, next: any): void
  attributes?: any
}

class GreetingsPluginFactory {

  public register: IRegister

  public constructor() {
    this.register = (server: Server, options: any, next: any) => {
      console.log('Hey ! Welcome here young beer addict !')
      next()
    }

    this.register.attributes = {
      name: 'GreetingsPlugin',
      version: '0.1.0'
    }
  }

}

export const GreetingsPlugin = new GreetingsPluginFactory()

Bootstrap your app

src/main.ts

import { bootstrap } from 'hapiour'
import { MyApp } from './app'

bootstrap(MyApp)

API

Decorators

Class Decorators

  • @App(config: Hapi.IServerConnectionOptions) : Declare a new App (correspond to a new Hapi.Server instance).
  • @Module(config: IModuleConfig) : Declare a new Module (class containing routes).
  • @Inject(modules: Array<Module>) : Assign an array of modules to an App or a Module.
  • @Plugins(plugins: Array<Plugin>) : Assign an array of plugins to an App.

Method decorators

  • @Route(config: Hapi.IRouteConfiguration) : Declare a new Route inside a Module. The target method will become the route handler.

Interfaces

IApp

  • constructor(server: Hapi.Server) : App will be constructed with Hapi server instance as first argument.
  • onPluginInit(err: any, done: () => void): Method called when Hapi plugin registration is done. If this method is defined, you must call done() to continue server initialization.
  • onInit(): Method called when Hapi server initialization is done.
  • onStart(): Method called when Hapi server is started.

IModuleConfig

  • basePath: string : Base path applied to all contained routes in the module.

Methods

  • bootstrap(...apps: Array<IApp>) : Bootstrap your apps.
1.0.9

7 years ago

1.0.8

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.1

8 years ago