Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
module-invalidate
Advanced tools
Invalidate node.js modules loaded through require()
module-invalidate
allows you to invalidate a given module (or all modules) and make it automatically reloaded on further access.
npm install --save FranckFreiburger/module-invalidate
module ./myModule.js
module.invalidable = true;
var count = 0;
exports.count = function() {
return count++;
}
main module ./index.js
require('module-invalidate');
var myModule = require('./myModule.js');
console.log( myModule.count() ); // 0
console.log( myModule.count() ); // 1
module.constructor.invalidateByExports(myModule);
console.log( myModule.count() ); // 0
console.log( myModule.count() ); // 1
const fs = require('fs');
var myModule = require('./myModule.js');
fs.watch(require.resolve('./myModule.js'), function() {
module.invalidateByPath('./myModule.js');
});
setInterval(function() {
console.log(myModule.count());
}, 1000);
require('module-invalidate');
var foo = require('foo');
console.log(foo.bar); // a value
// -- 'foo' module has changed --
myFooBarSystem.on('reloadModules', function() {
module.constructor.invalidateByExports(foo);
console.log(foo.bar); // a new value
})
require('module-invalidate');
var tmp_modulePath = require('path').join(__dirname, 'tmp_module.js');
require('fs').writeFileSync(tmp_modulePath, `
module.invalidable = true;
exports.a = 1;
`);
var tmp_module = require('./tmp_module.js');
console.log(tmp_module.a); // 1
require('fs').writeFileSync(tmp_modulePath, `
module.invalidable = true;
exports.a = 2;
`);
module.invalidateByPath('./tmp_module.js'); // or module.constructor.invalidateByExports(tmp_module)
console.log(tmp_module.a); // 2
require('fs').unlinkSync(tmp_modulePath);
In the following API, Module
refers to the Module constructor, available with module.constructor
or require('Module')
.
And module
refers to a module instance, available in each module with module
.
Enable the module-invalidate mechanism.
Any nodejs-non-internal module loaded after this call can be handled by this library.
This property controls whether the module can be invalidated. By default, modules are not invalidable. This property must be set before exporting.
module ./myModule.js
module.invalidable = true;
module.exports = {
foo: function() {}
}
Invalidates the specified module (same syntax and context than require()
). The module should have been flagged as invalidable using module.invaluable
.
require('module-invalidate');
var myModule = require('./myModule.js');
module.invalidateByPath('./myModule.js');
Invalidates the module by giving its exported object. The module should have been flagged as invalidable using module.invaluable
.
require('module-invalidate');
var myModule = require('./myModule.js');
module.constructor.invalidateByExports(myModule);
Invalidates all nodejs-non-internal modules. Only process modules that have been flagged as invalidable using module.invaluable
.
require('module-invalidate');
module.constructor.invalidate();
Invalidates the module module
. The module should have been flagged as invalidable using module.invaluable
.
module.invalidate();
Module.prototype.exports
is overridden by a No-op forwarding ES6 Proxy that handle all accesses to module exports.Reflect.ownKeys(), Object.keys(), for-in loop, console.log(), ... are not available on the module exports (only). eg.
Object.keys(require('foo.js'));
will throw a TypeError: ownKeys not implemented
exception.
However for-of loop works properly.
var foo = require('foo.js');
var bar = foo.bar;
In this case, bar
will always refers to the initial foo.bar
value. To avoid this, always refer bar
using foo.bar
.
Any reference to an invalidated module will continue to live with its new version.
TBD example
FAQs
invalidate required modules
The npm package module-invalidate receives a total of 3 weekly downloads. As such, module-invalidate popularity was classified as not popular.
We found that module-invalidate 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.