
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
require-intercept
Advanced tools
A way of intercepting required Node.js module dependencies.
via npm
npm install require-intercept
./TestModule.js
const dependency = require('./TestDependency');
module.exports = class TestModule {
getDependency() {
return dependency;
}
async callDependencyAsync() {
return new Promise(function(resolve, reject) {
setTimeout(function() {
resolve(dependency);
}, 100);
});
}
}
./TestDependency.js
module.exports = {
"dependencyType": "Real"
}
main.js
const requireIntercept = require('require-intercept');
const { module: TestModule, mockDependency, stopMocking, mockAround } = requireIntercept('./TestModule');
const testModule = new TestModule();
console.log("Before any mocking it calls the real TestDependency >", testModule.getDependency());
// Before any mocking it calls the real TestDependency > { "dependencyType": "Real" }
const mock = { "dependencyType": "Mocked" };
mockDependency('./TestDependency', mock);
console.log("Once mocked we have injected the mock without modifying the code structure >", testModule.getDependency());
// Once mocked we have injected the mock without modifying the code structure > { "dependencyType": "Mocked" }
stopMocking('./TestDependency');
console.log("Once we have stopped mocking we restore the original module >", testModule.getDependency());
// Once we have stopped mocking we restore the original module > { "dependencyType": "Real" }
mockAround('./TestDependency', mock, () => {
console.log("We can inject mocks within a particular scope >", testModule.getDependency());
// We can inject mocks within a particular scope > { "dependencyType": "Mocked" }
});
console.log("And they are automatically restored afterwards >", testModule.getDependency());
// And they are automatically restored afterwards > { "dependencyType": "Real" }
mockAround('./TestDependency', mock, async () => {
const value = await testModule.getDependencyAsync()
console.log("This also works with async functions >", value);
// This also works with async functions > { "dependencyType": "Mocked" }
});
This library uses the Semver versioning system. The numbers do not relate to maturity but the number of breaking changes introduced.
FAQs
A way of intercepting required Node.js modules.
The npm package require-intercept receives a total of 10 weekly downloads. As such, require-intercept popularity was classified as not popular.
We found that require-intercept 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
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.