Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
crudtacular
Advanced tools
Crudtacular is a Hapi plugin that automatically bridges all the Model/Collection Bookshelf logic that a developer usually has to write in custom handlers.
With Crudtacular, you define crudtacular as the handler itself in your route definitions and simple CRUD routes are ready to go without additional setup.
npm install --save crudtacular
When defining your Hapi plugins, require the following file and add it to the array of plugins that Hapi should use.
server.register({
register : require('crudtacular'),
}, function(err) {
if (err) throw err;
});
From any of your Hapi routes, you can define the following handler
const handler = {
crudtacular : {
pathPrefix : '/api',
model : User.Model,
collection : User.Collection,
},
};
From there, in your individual route definitions, use the new handler. You can include pre functions, if desired, to supplement query parameters or check that the user has the correct permissions to actually call the function.
server.route({
path : `/api/users`,
method : 'GET',
handler : handler,
config : {
description : 'Fetch all users',
},
});
server.route({
path : `/api/users/{userId}`,
method : 'GET',
handler : handler,
config : {
description : 'Fetch user',
},
});
server.route({
path : `/api/users`,
method : 'POST',
handler : handler,
config : {
description : 'Add new user',
},
});
server.route({
path : `/api/users/{userId}`,
method : 'UPDATE',
handler : handler,
config : {
pre : [
canUpdateUser,
],
description : 'Update user if an admin or the user is himself',
},
});
server.route({
path : `/api/users/{userId}`,
method : 'DELETE',
handler : handler,
config : {
pre : [
canDeleteUser,
],
description : 'Delete user if an admin or the user is himself',
},
});
FAQs
Auto-generated CRUD routes for Hapi and Bookshelf
We found that crudtacular 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.
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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.