
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
node-http-mock
Advanced tools
A HTTP mock server for node.js
Install it:
npm install node-http-mock -g
And run this command in your termial:
mock -t [api host] -p [local port] -c [config file]
You can use config file instead of command line options:
// mock.config.js
module.exports = {
port: 5000,
verbose: true,
proxy: {
target: 'api host',
changeOrigin: true,
},
mock: {
'/url_a': {},
'/url_b': {},
},
}
Run this command to use the config file:
mock -c # default config file mock.config.js
mock -c my.mock.config.js # customize config file
node-http-mock can construct mock data from real HTTP streams.It identify APIs according to request url, request method and query strings.
[method] [url] ? [query string]
Use -r option to recording these responses as ordinary JSON files in .mock/:
mock -r [directory path]
Press Crtl-C will terminate recording and create index.js tracing the JSON files.After that you can import the index.js into your config file manually:
module.exports = {
// ...
mock: require('./.mock/index.js'),
}
Run this command to see a list of all available options:
mock --help
MIT © BinRui.Guan
FAQs
A HTTP mock server for node.js
The npm package node-http-mock receives a total of 3 weekly downloads. As such, node-http-mock popularity was classified as not popular.
We found that node-http-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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.