boom-to-json-api
v1.0.0
Published
Formats a Boom error according to the JSON API spec
Downloads
6
Readme
boom-to-json-api
Formats a Boom error according to the JSON API spec
Installation
npm install --save boom-to-json-api
Usage
const Boom = require('boom');
const convert = require('boom-to-json-api');
const err = Boom.notFound('Sorry, nothing to see here!');
const body = convert(err);
console.log(body);
// {
// errors: [
// {
// status: '403',
// title: 'Not Found',
// detail: 'Sorry, nothing to see here!'
// }
// ]
// }