canirequire › ESM-only › human-signals
Is human-signals ESM-only? Can you require() it?
Human-friendly process signals
Last verified Sep 9, 2026 against human-signals@8.0.1. JSON
ESM-only ESM-only since 3.0.0 — last CommonJS version is 2.1.0
human-signals dropped its CommonJS build in 3.0.0 (June 2021). The last version you can require() on every Node.js version, including 18 and older, is 2.1.0, published Mar 14, 2020.
On Node.js 20.19+, 22.12+ and every newer release, require("human-signals") 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 human-signals@8.0.1 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("human-signals") from a CommonJS file and import "human-signals" from an ES module.
| Runtime | require("human-signals") | import "human-signals" |
|---|---|---|
| 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 human-signals
ES modules (import)
import humanSignals from "human-signals";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const humanSignals = require("human-signals");
// Any Node.js version:
const humanSignals = await import("human-signals");
// Or pin the last CommonJS release:
// npm install human-signals@2.1.0Module format by version
Derived from the type, main and exports fields of every stable release on npm (16 versions; the newest 16 shown).
| Versions | Format | First published |
|---|---|---|
| 3.0.0 – 8.0.1 | ESM-only | Jun 22, 2021 |
| 1.1.0 – 2.1.0 | CommonJS | Oct 12, 2019 |
Frequently asked
Is human-signals ESM-only?
human-signals@8.0.1 is ESM-only. human-signals dropped its CommonJS build in 3.0.0 (June 2021). The last version you can require() on every Node.js version, including 18 and older, is 2.1.0, published Mar 14, 2020.
Which version of human-signals still supports CommonJS / require()?
2.1.0 is the last version of human-signals with a CommonJS build. Install it with "npm install human-signals@2.1.0". Every version from 3.0.0 on is ESM-only.
How do I use human-signals from a CommonJS file?
Use a dynamic import: const mod = await import("human-signals"). On Node.js 20.19+, 22.12+ and newer, a plain require("human-signals") also works for ESM packages that do not use top-level await. Alternatively pin human-signals@2.1.0.
Does human-signals work in Bun?
Yes. import "human-signals" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does human-signals ship TypeScript types?
Yes. human-signals 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
- core-util-is 1.0.3CommonJS
- cssesc 3.0.0CommonJS
- get-symbol-description 1.1.0CommonJS
- jwa 2.0.1CommonJS
- is-regex 1.2.1CommonJS
- chownr 3.0.0Dual
- is-promise 4.0.0Dual
- xmlchars 2.2.0CommonJS