express-sanitize
v1.0.1
Published
A middleware to sanitize all of the request inputs to prevent SQL injections and XSS attacks
Maintainers
Readme
express-sanitize
An express middleware to sanitize all of the request inputs to prevent SQL injections and XSS attacks

The request body,params and queries will be sanitized. Also, you can edit middleware for custom edits like, escape or adding any characters.
I accept any contributes with open arms \./
Instalation
npm i express-sanitizeUsage
const es = require('express-sanitize');
app.use(es);
