Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

clear-require

sindresorhus11.3kMITdeprecated3.0.0TypeScript support: definitely-typed

Renamed to clear-module.

Clear a module from the require cache

clear, require, cache, uncache, uncached, module, unrequire, derequire, delete, del, remove, rm

readme

clear-require Build Status

Clear a module from the require cache

Useful for testing purposes when you need to freshly require a module.

Install

$ npm install --save clear-require

Usage

// foo.js
let i = 0;
module.exports = () => ++i;
const clearRequire = require('clear-require');

require('./foo')();
//=> 1

require('./foo')();
//=> 2

clearRequire('./foo');

require('./foo')();
//=> 1

API

clearRequire(moduleId)

moduleId

Type: string

What you would use with require().

clearRequire.all()

Clear all modules from the require cache.

clearRequire.match(regex)

Clear all matching modules from the require cache.

regex

Type: RegExp

Regex to match against the module ID's.

License

MIT © Sindre Sorhus