1.0.0 • Published 7 years ago

nocebo-express-error-handler v1.0.0

Weekly downloads
5
License
UNLICENCED
Repository
github
Last release
7 years ago

Nocebo Express Error Handler

Handles errors and present errors in JSON format.

Requirements

Needs harmony to be set when used:

node --harmony

Setup

Options:

jwtSecret: String | Secret to sign JWT with

schema: String | JSON Schema

Example:

{
  jwtSecret: "lKTGC6H8hJvgyTKk+h4zyxTUDh55Lm+2oe+TIBZIh8k=",
  schema: {
    "type": "object",
    "properties": {
      "title": {
        "type": "string"
      }
    },
    "required": ["title"]
  }
}

Test

To run unit tests:

npm test