Weekly downloads
Readme
A Hapi v17+ plugin to sanitize a route query, payload and params. This was heavily inspired by Disinfect (https://github.com/genediazjr/disinfect). Motivation for this plugin came about as Disinfect was not v17+ compatible.
The plugin can be used:
await server.register({
plugin: require('avert'),
options: {
// boolean parameters
removeWhitespace: true,
removeNonExistent: true,
removeDollarSign: true,
escapeDollarSign: false,
removeCurlyBracket: false,
escapeCurlyBracket: true,
avertQuery: true,
avertParams: true,
avertPayload: true,
// function parameters
genericCustomSanitizer: function() {},
queryCustomSanitizer: function() {},
paramCustomSanitizer: function() {},
payloadCustomSanitizer: function() {}
}
});
Any of the options can be disregarded. Also, we can either '''removeDollarSign''' or '''escapeDollarSign'''. Not both. If both are set to true, then "remove" takes precedence. Same logic applies for Curly Brackets.
request object -> sanitize -> generic sanitizer function -> query, params and/or payload specific sanitizer function -> (if true) remove white space -> (if true) remove null -> (if true) remove dollar sign OR escape dollar sign -> (if true) remove curly or escape curly brackets -> sanitized object returned.
Custom sanitizer function(s) needs to return a sanitized object as final result.
server.route({
method: 'GET',
path: '/disabled',
handler: (request, h) => {
return request.query;
},
options: {
plugins: {
avert: false
}
}
});
To use the plugin on a specific route:
server.route({
method: 'GET',
path: '/queryTestPerRoute',
handler: (request, h) => {
return request.query;
},
options: {
plugins: {
avert: {
removeNonExistent: true
}
}
}
});
FAQs
HapiJS request sanitizer.
The npm package avert receives a total of 647 weekly downloads. As such, avert popularity was classified as not popular.
We found that avert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.