Files
30-seconds-of-code/snippets/requireUncached.md
2022-05-03 18:34:25 +03:00

577 B

title, tags, expertise, author, cover, firstSeen, lastUpdated
title tags expertise author cover firstSeen lastUpdated
Uncached module require node advanced chalarangelo blog_images/curve.jpg 2020-08-07T15:49:39+03:00 2020-09-15T16:28:04+03:00

Loads a module after removing it from the cache (if exists).

  • Use delete to remove the module from the cache (if exists).
  • Use require() to load the module again.
const requireUncached = module => {
  delete require.cache[require.resolve(module)];
  return require(module);
};
const fs = requireUncached('fs'); // 'fs' will be loaded fresh every time