canirequire › ESM-only › find-cache-dir
Is find-cache-dir ESM-only? Can you require() it?
Finds the common standard cache directory
Last verified Sep 9, 2026 against find-cache-dir@6.0.0. JSON
ESM-only ESM-only since 4.0.0 — last CommonJS version is 3.3.2
find-cache-dir dropped its CommonJS build in 4.0.0 (November 2022). The last version you can require() on every Node.js version, including 18 and older, is 3.3.2, published Aug 29, 2021.
On Node.js 20.19+, 22.12+ and every newer release, require("find-cache-dir") works anyway: Node can load synchronous ES modules through require(). Verified on Node 20, 22, 24, 26. Node.js 18 and older still fail with ERR_REQUIRE_ESM.
Deprecated: Renamed to `find-cache-directory`.
Does find-cache-dir@6.0.0 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("find-cache-dir") from a CommonJS file and import "find-cache-dir" from an ES module.
| Runtime | require("find-cache-dir") | import "find-cache-dir" |
|---|---|---|
| Node.js 18 | ✗ failsERR_REQUIRE_ESM | ✓ works |
| Node.js 20 | ✓ works | ✓ works |
| Node.js 22 | ✓ works | ✓ works |
| Node.js 24 | ✓ works | ✓ works |
| Node.js 26 | ✓ works | ✓ works |
| Bun 1.4 | ✓ works | ✓ works |
How to import find-cache-dir
ES modules (import)
import findCacheDir from "find-cache-dir";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const findCacheDir = require("find-cache-dir");
// Any Node.js version:
const findCacheDir = await import("find-cache-dir");
// Or pin the last CommonJS release:
// npm install find-cache-dir@3.3.2Module format by version
Derived from the type, main and exports fields of every stable release on npm (14 versions; the newest 14 shown).
| Versions | Format | First published |
|---|---|---|
| 4.0.0 – 6.0.0 | ESM-only | Nov 4, 2022 |
| 0.1.0 – 3.3.2 | CommonJS | Dec 30, 2015 |
Frequently asked
Is find-cache-dir ESM-only?
find-cache-dir@6.0.0 is ESM-only. find-cache-dir dropped its CommonJS build in 4.0.0 (November 2022). The last version you can require() on every Node.js version, including 18 and older, is 3.3.2, published Aug 29, 2021.
Which version of find-cache-dir still supports CommonJS / require()?
3.3.2 is the last version of find-cache-dir with a CommonJS build. Install it with "npm install find-cache-dir@3.3.2". Every version from 4.0.0 on is ESM-only.
How do I use find-cache-dir from a CommonJS file?
Use a dynamic import: const mod = await import("find-cache-dir"). On Node.js 20.19+, 22.12+ and newer, a plain require("find-cache-dir") also works for ESM packages that do not use top-level await. Alternatively pin find-cache-dir@3.3.2.
Does find-cache-dir work in Bun?
Yes. import "find-cache-dir" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does find-cache-dir ship TypeScript types?
Yes. find-cache-dir bundles its own type declarations; no @types package is needed.
Links
Other esm-only packages
- ansi-styles 7.0.0last CJS
5.2.0 - strip-ansi 7.2.0last CJS
6.0.1 - commander 15.0.0last CJS
14.0.3 - supports-color 11.0.0last CJS
8.1.1 - chalk 6.0.0last CJS
4.1.2 - tslib 2.8.1last CJS
2.5.2 - string-width 8.2.2last CJS
4.2.3 - ansi-regex 6.3.0last CJS
5.0.1
Similar popularity
- glob-to-regexp 0.4.1CommonJS
- @hookform/resolvers 5.9.1Dual
- bluebird 3.7.2CommonJS
- @aws-sdk/middleware-recursion-detection 3.972.46CommonJS
- @adobe/css-tools 4.5.0Dual
- smart-buffer 4.2.0CommonJS
- ecdsa-sig-formatter 1.0.11CommonJS
- graphemer 1.4.0CommonJS