import-fresh
Install
$ npm install --save import-freshUsage
// foo.js
let i = 0;
module.exports = () => ++i;const importFresh = require('import-fresh');
require('./foo')();
//=> 1
require('./foo')();
//=> 2
importFresh('./foo')();
//=> 1
importFresh('./foo')();
//=> 1Related
License
Last updated