import-without-cache

Import ES modules without cache.

MIT 15 个版本
安装
npm install import-without-cache
yarn add import-without-cache
pnpm add import-without-cache
bun add import-without-cache
README

import-without-cache

npm version npm downloads Unit Test

Import ES modules without cache.

Features

  • Import ES modules without cache
  • All dependencies are also imported without cache

Install

npm i import-without-cache

Usage

import { clearRequireCache, init, isSupported } from 'import-without-cache'

if (!isSupported) {
  throw new Error('import-without-cache is not supported in this environment.')
}

const deregister = init({
  // Optional
  skipNodeModules: false,
})

const mod = await import('some-module', { with: { cache: 'no' } })

clearRequireCache() // Optional: clear CommonJS cache if needed

// or
const mod2 = await import(`no-cache://some-module`)

expect(mod).not.toBe(mod2) // Different instances

deregister() // Optional: deregister the hooks when no longer needed

Known Limitations

  • Supports Node.js v22.18.0 and later; Deno is not supported.
  • Yarn PnP is not supported on Node.js versions earlier than v24.
  • In Bun, clearRequireCache works, but init is unnecessary because ESM imports behave the same as CommonJS requires.
  • Only ESM modules are supported by default. The CommonJS cache can be cleared with clearRequireCache.
  • require(esm) is supported starting in Node.js v24.13.1.

Sponsors

License

MIT License © 2025-PRESENT Kevin Deng

版本列表
0.4.0 2026-05-02
0.3.3 2026-04-16
0.3.2 2026-04-16
0.3.1 2026-04-16
0.3.0 2026-04-16
0.2.5 2025-12-21
0.2.4 2025-12-16
0.2.3 2025-12-10
0.2.2 2025-12-03
0.2.1 2025-12-02
0.2.0 2025-11-30
0.1.3 2025-11-30
0.1.2 2025-11-29
0.1.1 2025-11-29
0.1.0 2025-11-29