nocebo-express-auth-validator
v1.0.4
Published
Nocebo express auth validator.
Readme
Express Request Filter
Handles JWT authorization and schema validation on express request.
Requirements
Needs harmony to be set when used:
node --harmonySetup
Options:
jwtSecret: String | Secret to sign JWT with
schema: String | JSON SchemaExample:
{
jwtSecret: "lKTGC6H8hJvgyTKk+h4zyxTUDh55Lm+2oe+TIBZIh8k=",
schema: {
"type": "object",
"properties": {
"title": {
"type": "string"
}
},
"required": ["title"]
}
}Test
To run unit tests:
npm test