
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
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 8 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
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.