canirequire › ESM-only › uuid
Is uuid ESM-only? Can you require() it?
RFC9562 UUIDs
Last verified Sep 9, 2026 against uuid@14.0.2. JSON
ESM-only ESM-only since 12.0.0 — last CommonJS version is 11.1.1
uuid dropped its CommonJS build in 12.0.0 (September 2025). The last version you can require() on every Node.js version, including 18 and older, is 11.1.1, published Apr 29, 2026.
On Node.js 20.19+, 22.12+ and every newer release, require("uuid") 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.
Does uuid@14.0.2 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("uuid") from a CommonJS file and import "uuid" from an ES module.
| Runtime | require("uuid") | import "uuid" |
|---|---|---|
| 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 uuid
ES modules (import)
import uuid from "uuid";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const uuid = require("uuid");
// Any Node.js version:
const uuid = await import("uuid");
// Or pin the last CommonJS release:
// npm install uuid@11.1.1Module format by version
Derived from the type, main and exports fields of every stable release on npm (47 versions; the newest 47 shown).
| Versions | Format | First published |
|---|---|---|
| 12.0.0 – 14.0.2 | ESM-only | Sep 5, 2025 |
| 8.0.0 – 11.1.1 | Dual (CommonJS + ESM) | Apr 29, 2020 |
| 0.0.1 – 7.0.3 | CommonJS | Mar 31, 2011 |
Frequently asked
Is uuid ESM-only?
uuid@14.0.2 is ESM-only. uuid dropped its CommonJS build in 12.0.0 (September 2025). The last version you can require() on every Node.js version, including 18 and older, is 11.1.1, published Apr 29, 2026.
Which version of uuid still supports CommonJS / require()?
11.1.1 is the last version of uuid with a CommonJS build. Install it with "npm install uuid@11.1.1". Every version from 12.0.0 on is ESM-only.
How do I use uuid from a CommonJS file?
Use a dynamic import: const mod = await import("uuid"). On Node.js 20.19+, 22.12+ and newer, a plain require("uuid") also works for ESM packages that do not use top-level await. Alternatively pin uuid@11.1.1.
Does uuid work in Bun?
Yes. import "uuid" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does uuid ship TypeScript types?
Yes. uuid 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
- safe-buffer 5.2.1CommonJS
- balanced-match 4.0.4Dual
- js-yaml 5.4.1Dual
- iconv-lite 0.7.3CommonJS
- postcss 8.5.28Dual
- mime-db 1.54.0CommonJS
- zod 4.5.4Dual
- path-key 4.0.0ESM-only