Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@everymundo/cleanrequire

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@everymundo/cleanrequire

Cleans nodejs require.cache for a given module and requires it again. Very useful for testing purposes.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-84.37%
Maintainers
1
Weekly downloads
 
Created
Source

@everymundo/cleanrequire

Cleans nodejs require.cache for a given module and requires it again. Very useful for testing purposes.

installation

npm install @everymundo/cleanrequire

usage

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

Considerations

  • This library was created mainly to be used in test code, not production code.
  • It does not have the intention to be fast, in fact it is much slower than the regular require
  • It does not have the intention to replace the regular require.

Keywords

FAQs

Package last updated on 27 Jan 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc