Skip to content

Instantly share code, notes, and snippets.

@anggiaj
Created December 23, 2016 22:59
Show Gist options
  • Save anggiaj/6dba87a2719372a9f2fd0a4b408a4a6b to your computer and use it in GitHub Desktop.
Save anggiaj/6dba87a2719372a9f2fd0a4b408a4a6b to your computer and use it in GitHub Desktop.
node js require uncached module
function requireUncached(module) {
delete require.cache[require.resolve(module)];
return require(module);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment