fastify-boom
v1.0.0
Published
Fastify Boom support - HTTP-friendly error objects
Downloads
2,996
Readme
fastify-boom
Fastify Boom support - HTTP-friendly error objects
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