koa-router-joi-validation
⚡️Super Light, configurable Koa router validator middleware that uses Joi.⚡️
Install
npm install koa-router-joi-validation -S
Why
- It uses Joi (The most powerful schema description language and data validator for JavaScript.)
- Input validation (
query
,params
,body
,headers
). - Output validation, based on the HTTP returned code from the router
200
,204
...etc. - Configurable.
- It does only one thing (validation) and it does it right.
- Loose coupling with
koa-router
, means:- Built-for
koa-router
and NOT [koa-router
Built-in]. - Standard routes function signature.
- Clean changelog and No unnecessary updates (it always concerns the package itself).
- Always have access to
await next()
. - Tiny codebase.
- Built-for
- 100% 🔥 test coverage.
Usage
The middleware function takes an object as argument
;... ...
validate(object)
The object contains the next keys:
Key | Type | Validates | Note |
---|---|---|---|
query | Joi Schema Object | ctx.query |
|
params | Joi Schema Object | ctx.params |
|
headers | Joi Schema Object | ctx.headers |
|
body | Joi Schema Object | ctx.request.body |
⚠️ use a body parser e.g. koa-bodyparser |
200..503 | Joi SchemaObject | ctx.body |
when ctx.status === 200..503 |
config | Object | Use it to change the validator behavior: |
config
-
denyUnknown
allow/disallow undeclared values in the schema
Type
array
.default [].
e.g.
denyUnknown["headers"]
the request fail ONLY if all the headers entries are declared in schema.
-
httpErrorCode
The returned http error code when the validation fails
Type
int
HTTP code (400
...503
)default
400
(Bad request)
-
nextOnError
If
true
, the validator will not throw an error and the execution flow will continue (await next()
)⚠️ Note: in that case the validation error will be found in
ctx.state.routeValidationError
Type
bool
default
false
-
alternate
Allows alternative validation in the schema. It is a wrapper of Joi's alternatives function.
Type
array
.default [].
e.g.
alternate["body", "query"]
alternative validation will be applied on the request'squery
andbody
parameters. The request fails if both are incorrect. If any parameter from the list succeed the validation, request will pass and continue the execution flow.
Example
;;; const app = ;const router = router; app;