Skip to content

finom/fresh-up

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fresh-up npm version

Refreshes NodeJS module when its file is modified

As you know NodeJS caches values returned by require function. When you call require('foo') twice or more it returns the same object. fresh-up watches and clears the cache (via delete require.cache[modulePath]) when the file of the module is modified. The only argument is an absolute path to the module.

npm install --save fresh-up

Example:

const freshUp = require('fresh-up');

// require.resolve returns absolute path to ./bar
freshUp(require.resolve('./bar'));

function foo() {
    const bar = require('./bar'); // returns another value only if ./bar is changed
    bar();
}

// foo can be called by any async function
setInterval(() => {
    foo();
}, 500);

About

require function wrapper which returns actual module value

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Packages

 
 
 

Contributors