setup-maven/node_modules/import-fresh
Peter Thorin d24fc39165 Update dependencies 2022-10-10 11:17:09 +02:00
..
index.js change url to archive mirror 2020-02-03 13:46:22 +03:00
license change url to archive mirror 2020-02-03 13:46:22 +03:00
package.json Update dependencies 2022-10-10 11:17:09 +02:00
readme.md change url to archive mirror 2020-02-03 13:46:22 +03:00

readme.md

import-fresh Build Status

Import a module while bypassing the cache

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

Install

$ npm install --save import-fresh

Usage

// foo.js
let i = 0;
module.exports = () => ++i;
const importFresh = require('import-fresh');

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

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

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

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

License

MIT © Sindre Sorhus