![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Server-level request payload validation for hapi.
Install via NPM.
$ npm install supervizor
Register the package as a server plugin and provide a validation function via the options
that will be attached to each route.
If the validation fails, a joi-like 400 Bad Request
error is returned alongside an additional content-validation: failure
response header. If everything is ok, the response will ultimately contain a content-validation: success
header.
const Hapi = require('hapi');
const Supervizor = require('supervizor');
server = new Hapi.Server();
server.connection({
// go nuts
});
const plugin = {
register: Supervizor,
options: {
validator: (payload, options, next) => {
// In this example, the payload must contain `valid: true`.
if (!payload.valid) {
// Be nice to everyone and provide details about the issue.
const error = new Error('invalid payload');
error.details = [{ path: 'valid' }];
return next(error);
}
// Be nice to yourself and allow further validation.
next(null, payload);
});
}
};
server.register(plugin, (err) => {
if (err) {
throw err;
}
server.start(() => {
// go nuts
});
});
FAQs
Server-level request payload validation for hapi
The npm package supervizor receives a total of 5 weekly downloads. As such, supervizor popularity was classified as not popular.
We found that supervizor 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 for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.