2.0.0 • Published 9 years ago

hapi-boom-jsend v2.0.0

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

Build Status

hapi-boom-jsend

hapi plugin to convert boom errors into jsend responses

npm install hapi-boom-jsend

4XX responses

4XX responses created by boom are converted into jsend fail responses. The error and statusCode properties are left on the payload, while the others are coerced into jsend properties.

Before

{
  "statusCode": 401,
  "error": "Unauthorized",
  "message": "your message"
}

After

{
  "status": "fail",
  "error": "Unauthorized",
  "statusCode": 401,
  "data": { "message": "your message" }
}

5XX responses

5XX responses created by boom are converted into jsend error responses. The error, statusCode, and message properties are left on the payload. status and data are added as well.

Before

{
  "statusCode": 502,
  "error": "Bad Gateway",
  "message": "An internal server error occurred"
}

After

{
  "status": "error",
  "error": "Bad Gateway",
  "statusCode": 502,
  "data": {},
  "message": "An internal server error occurred"
}
2.0.0

9 years ago

1.0.0

10 years ago

0.1.0

10 years ago