canirequire › ESM-only › @sindresorhus/is
Is @sindresorhus/is ESM-only? Can you require() it?
Type check values
Last verified Sep 9, 2026 against @sindresorhus/is@8.1.0. JSON
ESM-only ESM-only since 5.0.0 — last CommonJS version is 4.6.0
@sindresorhus/is dropped its CommonJS build in 5.0.0 (June 2022). The last version you can require() on every Node.js version, including 18 and older, is 4.6.0, published Feb 27, 2022.
On Node.js 20.19+, 22.12+ and every newer release, require("@sindresorhus/is") works anyway: Node can load synchronous ES modules through require(). Verified on Node 22, 24, 26. Node.js 18 and older still fail with ERR_REQUIRE_ESM.
@sindresorhus/is@8.1.0 declares engines ">=22", so Node.js 18, 20 are outside its supported range regardless of module format.
Does @sindresorhus/is@8.1.0 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("@sindresorhus/is") from a CommonJS file and import "@sindresorhus/is" from an ES module.
| Runtime | require("@sindresorhus/is") | import "@sindresorhus/is" |
|---|---|---|
| Node.js 18 | ✗ failsERR_REQUIRE_ESM | ✗ failsSyntaxError |
| 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 @sindresorhus/is
ES modules (import)
import is from "@sindresorhus/is";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const is = require("@sindresorhus/is");
// Any Node.js version:
const is = await import("@sindresorhus/is");
// Or pin the last CommonJS release:
// npm install @sindresorhus/is@4.6.0Module format by version
Derived from the type, main and exports fields of every stable release on npm (63 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 5.0.0 – 8.1.0 | ESM-only | Jun 11, 2022 |
| 0.3.0 – 4.6.0 | CommonJS | Oct 11, 2017 |
Frequently asked
Is @sindresorhus/is ESM-only?
@sindresorhus/is@8.1.0 is ESM-only. @sindresorhus/is dropped its CommonJS build in 5.0.0 (June 2022). The last version you can require() on every Node.js version, including 18 and older, is 4.6.0, published Feb 27, 2022.
Which version of @sindresorhus/is still supports CommonJS / require()?
4.6.0 is the last version of @sindresorhus/is with a CommonJS build. Install it with "npm install @sindresorhus/is@4.6.0". Every version from 5.0.0 on is ESM-only.
How do I use @sindresorhus/is from a CommonJS file?
Use a dynamic import: const mod = await import("@sindresorhus/is"). On Node.js 20.19+, 22.12+ and newer, a plain require("@sindresorhus/is") also works for ESM packages that do not use top-level await. Alternatively pin @sindresorhus/is@4.6.0.
Does @sindresorhus/is work in Bun?
Yes. import "@sindresorhus/is" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does @sindresorhus/is ship TypeScript types?
Yes. @sindresorhus/is 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
- @aws-sdk/credential-provider-process 3.972.70CommonJS
- @smithy/signature-v4 5.7.3CommonJS
- @aws-sdk/credential-provider-http 3.972.72CommonJS
- @istanbuljs/schema 0.1.6CommonJS
- @jest/fake-timers 30.5.1Dual
- @jest/transform 30.5.1Dual
- @babel/helper-member-expression-to-functions 8.0.0ESM-only
- @opentelemetry/api 1.9.1CommonJS