Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@c8/joi-validator-promised
Advanced tools
A wrapper around Joi `validate` method which provides support for promises
A wrapper around Joi validate
method which provides support for promises
'use strict'
const Validator = require('@c8/joi-validator-promised')
const opts = {
abortEarly: true
}
const myValidator = new Validator(opts)
const joiSchema = {
id: Joi.number().min(1),
name: Joi.string()
}
const data = {
id: 2,
name: 'C8 Management'
}
// Using the promise
myValidator.validate(data, joiSchema).then(
(result) => {
//do something
},
(err) => {
throw new Validator.ValidationError('A validation error occurred')
}
)
// Validate Synchronously i.e. with the standard Joi validate method
let result = myValidator.validateSync(data, joiSchema)
//If there is no error
if (!result) {
// Do something
} else {
throw new Validator.ValidationError('A validation error occurred')
}
As this package is simply a wrapper around Joi validate
method, the opts
object that is passed to the constructor supports all Joi
options
FAQs
A wrapper around Joi `validate` method which provides support for promises
We found that @c8/joi-validator-promised demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.