import-fresh busts the module cache and imports a fresh copy of a Node.js module. This is useful for testing, avoiding stale data, or when you need a truly new instance of a module. It invalidates the require.cache entry, forcing Node.js to reload the module from disk on subsequent require or import calls. import-fresh offers a simple and reliable way to work around module caching.