1.0.0 • Published 4 years ago

fastify-boom v1.0.0

Weekly downloads
279
License
MIT
Repository
github
Last release
4 years ago

fastify-boom

Fastify Boom support - HTTP-friendly error objects

Current Version Build Status

Install

npm i fastify-boom

Usage

const fastify = require('fastify')()
const Boom = require('boom')

fastify.register(require('fastify-boom'))

fastify.get('/', async function (req, reply) {
  throw new Boom('Opppps!')
})

fastify.listen(3000, err => {
  if (err) {
    fastify.log.error(err)
  }
})

Credits

  • boom HTTP-friendly error objects