New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

hapi-boom-decorators

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hapi-boom-decorators

Decorates a Hapi server's reply interface with functions to make it easy to reply with Boom errors


Version published
Weekly downloads
1.6K
increased by14.1%
Maintainers
1
Weekly downloads
 
Created

hapi-boom-decorators

Circle CI

A plugin for hapi.js to make responding with boom errors a little less verbose by decorating the reply interface with equivilent methods.

Install

npm install hapi-boom-decorators --save

Register Plugin

server.register({
  register: require('hapi-boom-decorators')
}, function(err) {
  ...
});

API

Standard way of replying with boom response:

server.route({
  method: 'GET',
  path: '/resource/{id}',
  handler: (request, reply) => {
    reply(Boom.notFound());
  }
});

New way:

server.route({
  method: 'GET',
  path: '/resource/{id}',
  handler: (request, reply) => {
    reply.notFound();
  }
});

Check the boom documentation for all available methods. Every 4xx and 5xx error type has been implemented in hapi-boom-decorators with the same function signature e.g. reply.xxx([message], [data]).

  • wrap - reply(Boom.wrap(err, 500, 'a message')) can be written as reply.boom(500, err, 'a message')
  • create - reply(Boom.create(500, 'a message', {})) can be written as reply.boom(500, 'a message', {})

FAQs

Package last updated on 14 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts