Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
This library will take your RAML, parse it using raml-parser
, and then set up routes in hapi
to match your RAML.
##Installation
npm install hapi-raml
##Usage
Require in hapi-raml, and pass it a reference to your hapi server, a hashmap of your Controllers, and the path to your RAML.
When you're ready, call hookup()
, and hapi-raml will link up your hapi routes to your Controllers, and return a
Promise that will tell you when it has finished. Then you can start your hapi server.
var HapiRaml = require('hapi-raml');
var server = new Hapi.Server();
var controllers = {};
controllers.MyController = new MyController();
var hapiRaml = new HapiRaml(server, controllers, './my.raml');
hapiRaml.hookup().then(function () {
server.connection({ port: 3000 });
server.start();
});
##Conventions
We borrow the collection/collection-item pattern from RAML and layer Controllers on top.
Your Controllers should feature at least the following functions, which should expect to receive the Hapi object
request
, and a callback reply
.
#####(API Root)/collection maps to list()
Returns an Array of instances of the matching Model for this Controller.
#####(API Root)/collection/{id} maps to fetch()
Returns a single instance of the matching Model for this Controller.
#####(API Root)/collection/{id}/(anything) maps to (anything)()
Whatever you decide!
FAQs
Create HAPI bindings from RAML specs automatically
The npm package hapi-raml receives a total of 2 weekly downloads. As such, hapi-raml popularity was classified as not popular.
We found that hapi-raml 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.