Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Generate hapi CRUD handler functions from a model constructor function
var route = {
method: "POST",
path: "/models",
handler: handlers.create
}
// model prototype
var model = {
// model must expose create method
create: function (obj, cb) {
//... do some db stuff
return cb("created");
},
// model must expose findOne method
findOne: function (criteria, cb) {
//... do some db stuff
return cb("found");
},
// model must expose update method
update: function (criteria, changes, cb) {
//... do some db stuff
return cb("updated");
},
// model must expose delete method
del: function (criteria, cb) {
//... do some db stuff
return cb("deleted");
}
// model must expose search method
find: function (criteria, cb) {
//... do some db stuff
return cb("deleted");
}
}
var handlers = require("asbestos")(model);
asbestos exposes a single function that returns on object with 5 methods:
.create
.find
.findOne
.update
.del
params
obj
: an object with create, find, findOne, update, and del methods.
returns
An object with 5 methods:
.create(req, res)
: a hapi handler function. It passes req.payload to the constructor's create method. It returns the object just created on success.
.find(req, res)
: a hapi handler function. It passes req.query to the constructor's find method. It returns the matched documents on success. It returns an empty array if not found.
.findOne(req, res)
: a hapi handler function. It passes req.params.id to the constructor's findOne method. It returns the matched document on success. It returns an empty object and a 404 if not found.
.update(req, res)
: a hapi handler function. It passes req.params.id and req.payload to the constructor's update method. It returns the updated document on success. It returns an empty object and a 404 if not found.
.del(req, res)
: a hapi handler function. It passes req.params.id to the constructor's delete method. It returns the deleted document on success. It returns an empty object and a 404 if not found.
MIT
FAQs
generate CRUD handler functions from a model constructor function
We found that asbestos 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.