@snymax/express-utils
v1.0.2
Published
A collection of middlewares that my backend uses
Downloads
3
Readme
Express Utils
These are just a few simple validators to check the users credentials
Installation
npm i @snymax/express-utils
Usage
Usage is straight forward each method is a middleware to be used in express.
const {email, phone, birthday, password} = require("@snymax/express-utils");
router.post("/", email, phone, birthday, password, ...);