Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gabrielcsapo/e7f09163d11992b374b899f627989851 to your computer and use it in GitHub Desktop.
Save gabrielcsapo/e7f09163d11992b374b899f627989851 to your computer and use it in GitHub Desktop.
invalidate require cache

flow.txt

hello
require('flow.txt'); // hello

fs.writeSync('flow.txt', 'helloagain');

require('flow.txt'); // hello

delete require.cache['flow.txt'];
require('flow.txt'); // helloagain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment