This is a validation middleware for Nodejs application and API including validations when using frameworks such as kemboijs. It can be used to validate request or sanitize them. Note that, this validator makes use of validator.js.
npm install nodejs-validate
var validator = require("nodejs-validate");
var validEmail = validator.isEmail("[email protected]");
var invalidEmail = validator.isEmail("notvalida@invalid");
const validator = require('nodejs-validate')
class ExampleMiddleware {
static async userMiddleware(req, res, next) {
const { email, username, phoneNumber } = req.body;
const isEmail = validator.isEmail(email);
if(!isEmail) {
res.status(400).send({
message: "Invalid email provided"
})
}
next();
}
}
In general, we follow the "fork-and-pull" Git workflow.
- Fork this repo on GitHub
- Clone the forked repo locally
- Work on your fork
- Make your changes and additions
- Change or add tests if needed
- Add changes to README.md if needed
- Commit changes to your own branch
- Make sure you merge the latest from "upstream" and resolve conflicts if there is any
- Push your work back up to your fork
- Submit a Pull request so that we can review your changes