Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Hapi plugin for mocking endpoints.
npm install hapi-mock
This plugin provides a simple way to mock your HAPI endpoints. It is experimental at this point of time.
Register the plugin with Hapi server like this:
const Hapi = require('@hapi/hapi');
const hapiMock = require('hapi-mock');
const server = new Hapi.Server({
port: 3000,
});
const mock = {
plugin: hapiMock,
options: {
baseDir: Path.join(__dirname, 'mocks'),
},
};
const provision = async () => {
await server.register([mock]);
// ...
await server.start();
};
provision();
Your route configuration may look like this:
server.route({
method: 'GET',
path: '/example',
options: {
plugins: {
'hapi-mock': { // activate mocking for this endpoint
file: './cases', // JS module relative to `baseDir`
},
},
},
handler: function (request, h) {
// ...
}
});
The file
option refers to a JS module (e.g., cases.js
) containing your mock cases, e.g.,
module.exports = [{
condition: "params.id == '4711'",
code: 418,
}];
condition
may refer to HAPI's route parameters headers
, params
, query
, payload
, method
, and path
.
The result parameters of a mock case can be code
, type
, and body
.
And finally, you need to set the HTTP header x-hapi-mock: true
to a request to have a route use mocking rather than its real handler implementation.
You don't want to use this plug-in in production, of course. Experimental. Have fun.
FAQs
A simple HAPI plug-in for mocking endpoints
The npm package hapi-mock receives a total of 3 weekly downloads. As such, hapi-mock popularity was classified as not popular.
We found that hapi-mock 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
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.