express-enum-param
Middleware for ensuring that a request parameter can only assume certain values
Installation
$ npm install --save express-enum-param
Requires body-parser
.
Usage
; let allowedAnimals = 'crocodile' 'heron' 'turtle'; router;
The above code will return a 400 HTTP status code and a message informing the client that this parameter can only have values from a certain list if animal
is anything else than crocodile
, heron
, or turtle
.
About
License
Copyright © 2018, nukeop. Released under the Affero GPL 3.0 License.