Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Mock HTTP server with simple configuration and UI to control the server behaviour
Install the package as a devDependency:
npm install mockayo --save-dev
Create a JavaScript config file with any name, with the following structure:
module.exports = {
baseDirectory: '[PATH TO YOUR DIRECTORY WITH MOCK SCENARIOS]',
port: [PORT TO RUN THE MOCK SERVER ON], // defaults to 8000,
mocks: [
{
name: '[ENDPOINT NAME]',
method: '[ENDPOINT METHOD]',
url: '[ENDPOINT URL]',
directory: '[SUBDIRECTORY WITH SCENARIOS (UNDER BASE DIRECTORY)]',
},
// ... define as many mocks as you wish ...
]
};
For each mock (combination of URL and method), create a directory with at least one scenario, called default.js
. You can create as many as you want though.
Each scenario should be a regular JavaScript file, exporting an object with the following structure:
module.exports = {
code: [HTTP RESPONSE CODE], // defaults to 200
body: [HTTP RESPONSE BODY - STRING OR JAVASCRIPT OBJECT (NOT SERIALIZED)],
}
Check out an example of the config file and mock scenarios.
Finally, add a command to your package.json:
"scripts": {
// ... your scripts ...
"mock-server": "mockayo [RELATIVE/ABSOLUTE PATH TO YOUR CONFIG FILE]"
},
Now, you can run your mock server, using the following command:
npm run mock-server
When the server is running, you can make all calls you defined in the config, as well as access the control UI to switch scenarios.
FAQs
Mock HTTP server with simple configuration and UI to control the server behaviour
We found that mockayo 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.