
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
hapi-relations
Advanced tools
A plugin for hapi using the relations ACL.
See relations for supported clients and ACL structure.
Pass in your relations schema and choosen client as options.
var Hapi = require('hapi');
var redis = require('redis');
var fs = require('fs');
var client = redis.createClient(6379, 'localhost');
var server = new Hapi.Server();
var schema = JSON.parse(
fs.readFileSync('schema.json', 'utf8')
);
server.register([
{
register: require('hapi-relations'),
options: {
schema: schema,
client: redis,
clientType: 'redis'
}
}
], function (err) {
console.log(err);
});
Or optionally pass the client in as a server plugin
server.register([
{
register: require('hapi-relations'),
options: {
schema: schema,
client: 'hapi-redis',
clientType: 'redis',
pluginClient: true
}
}
], function (err) {
console.log(err);
});
And access realtions from the plugins
server.plugins.relations.coins('Can TEST GET from EXAMPLE);
The schema
expects a loaded schema file, which will be added to relations. A context defines an application in which the user's privileges will be evaulated. For instance, if the context is inventory
, then the roles and actions listed within the context correspond to a user's ability to use or add to inventory
.
The context consists of roles, and which actions they are allowed to perform. Please see the test/permission.json
for an example.
Please follow the MRN Javascript Style Guide (forked from AirBnB). Use grunt lint
to check yo-self
FAQs
a relations plugin for hapi
The npm package hapi-relations receives a total of 0 weekly downloads. As such, hapi-relations popularity was classified as not popular.
We found that hapi-relations 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.