canirequire › ESM-only › color-name
Is color-name ESM-only? Can you require() it?
A list of color names and its values
Last verified Sep 9, 2026 against color-name@2.1.1. JSON
ESM-only ESM-only since 2.0.0 — last CommonJS version is 1.1.4
color-name dropped its CommonJS build in 2.0.0 (November 2022). The last version you can require() on every Node.js version, including 18 and older, is 1.1.4, published Sep 21, 2018.
On Node.js 20.19+, 22.12+ and every newer release, require("color-name") 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 color-name@2.1.1 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("color-name") from a CommonJS file and import "color-name" from an ES module.
| Runtime | require("color-name") | import "color-name" |
|---|---|---|
| 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 color-name
ES modules (import)
import colorName from "color-name";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const colorName = require("color-name");
// Any Node.js version:
const colorName = await import("color-name");
// Or pin the last CommonJS release:
// npm install color-name@1.1.4Module format by version
Derived from the type, main and exports fields of every stable release on npm (13 versions; the newest 13 shown).
| Versions | Format | First published |
|---|---|---|
| 2.0.0 – 2.1.1 | ESM-only | Nov 8, 2022 |
| 0.0.1 – 1.1.4 | CommonJS | Nov 23, 2014 |
Frequently asked
Is color-name ESM-only?
color-name@2.1.1 is ESM-only. color-name dropped its CommonJS build in 2.0.0 (November 2022). The last version you can require() on every Node.js version, including 18 and older, is 1.1.4, published Sep 21, 2018.
Which version of color-name still supports CommonJS / require()?
1.1.4 is the last version of color-name with a CommonJS build. Install it with "npm install color-name@1.1.4". Every version from 2.0.0 on is ESM-only.
How do I use color-name from a CommonJS file?
Use a dynamic import: const mod = await import("color-name"). On Node.js 20.19+, 22.12+ and newer, a plain require("color-name") also works for ESM packages that do not use top-level await. Alternatively pin color-name@1.1.4.
Does color-name work in Bun?
Yes. import "color-name" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does color-name ship TypeScript types?
Not bundled. Install the community types with "npm install -D @types/color-name".
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
- escape-string-regexp 5.0.0ESM-only
- react-is 19.2.8CommonJS
- readable-stream 4.7.0CommonJS
- wrap-ansi 10.0.1ESM-only
- color-convert 3.1.3ESM-only
- emoji-regex 10.6.0CommonJS
- p-limit 7.3.2ESM-only
- which 7.0.0CommonJS