Skip to content
/ fresh-up Public

require function wrapper which returns actual module value

License

Notifications You must be signed in to change notification settings

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

Watchers

Forks

Packages

No packages published