1.0.0 • Published 8 years ago

express-request-filter v1.0.0

Weekly downloads
-
License
UNLICENCED
Repository
-
Last release
8 years ago

Express Request Filter

Handles JWT authorization and schema validation on express request.

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