
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@everymundo/cleanrequire
Advanced tools
Cleans nodejs require.cache for a given module and requires it again. Very useful for testing purposes.
Cleans nodejs require.cache for a given module and requires it again. Very useful for testing purposes.
npm install @everymundo/cleanrequire
By using the regular require
function from nodejs the result will be cached and the subsequent requests will not even touch the file again. The value will be returned from the cache. That is awesome for 99.9% of the cases.
But, sometimes, you want to require a file and you want nodejs to read it over and over again. For those cases you can use the cleanrequire library.
const cleanrequire = require('@everymundo/cleanrequire');
let libIwantToReloadEveryTime = cleanrequire('./lib/lib-i-want-to-reload-every-time');
libIwantToReloadEveryTime.doSomething();
libIwantToReloadEveryTime = cleanrequire('./lib/lib-i-want-to-reload-every-time');
libIwantToReloadEveryTime.doSomething();
Let's say you have a file name datetime with the following code
module.exports = new Date().toJSON();
By using the regular require
function, it will only run that code once, no matter how many times you call it.
But when using cleanrequire
function, it will run that code every single time you call it.
Check the test file for more details
require
FAQs
Cleans nodejs require.cache for a given module and requires it again. Very useful for testing purposes.
The npm package @everymundo/cleanrequire receives a total of 0 weekly downloads. As such, @everymundo/cleanrequire popularity was classified as not popular.
We found that @everymundo/cleanrequire demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 34 open source maintainers 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.