![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
joi4express
Advanced tools
Joiexpress validator
const express = require('express')
const app = express()
const joi4express = require('joi4express')
const helloWorld = {
handler: (req, res) => {
res.send('Hello-world !')
},
validate: {
query: Joi.object({
param1: Joi.string()
}),
params: Joi.object({
param1: Joi.string()
}),
body: {
param1: Joi.array().items({
param2: Joi.string()
})
},
headers: Joi.object({
param1: Joi.string()
}),
},
response: {
schema: Joi.object({
param1: Joi.string()
}),
status: {
204: Joi.object({
param2: Joi.string()
}),
404: Joi.object({
error: 'Failure'
})
}
}
}
app.get('/', joi4express(helloWorld))
app.listen(port, function () {
console.log(`Example app listening on port ${port} !`)
})
The library also accepts a Joi Options object, and a Custom Joi Error Formatting function.
In the following example, double quotes will be removed due to the custom error formatting function.
const customJoiErrorFormatFcn = (e) => {
const message = e.message.replace(/"/g, '')
const details = e.details.map(detail => ({
...detail,
message: detail.message.replace(/"/g, '')
}))
return {
message,
details
}
}
const joiOptions = null // Or some desired options
app.get('/', joi4express(helloWorld, joiOptions, customJoiErrorFormatFcn))
Any custom formatting function must return an object of the form:
{
message: 'a message string',
details: [
{
// Joi Error Details Object
}
]
}
If the user-defined formatting function fails, then the original message/details will be returned (as if the function was never defined in the first place)
npm install joi4express --save
Tests are written with mocha/chai.
$ npm test
FAQs
Joi validator for express, validates the request and the reponse
The npm package joi4express receives a total of 5 weekly downloads. As such, joi4express popularity was classified as not popular.
We found that joi4express 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.