canirequire › ESM-only › @vitest/mocker
Is @vitest/mocker ESM-only? Can you require() it?
Vitest module mocker implementation
Last verified Sep 9, 2026 against @vitest/mocker@5.0.0. JSON
ESM-only ESM-only — it has never shipped a CommonJS build
@vitest/mocker has been ESM-only since its first stable release. There is no version you can require() on Node.js 18 or older.
On Node.js 20.19+, 22.12+ and every newer release, require("@vitest/mocker") 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 @vitest/mocker@5.0.0 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("@vitest/mocker") from a CommonJS file and import "@vitest/mocker" from an ES module.
| Runtime | require("@vitest/mocker") | import "@vitest/mocker" |
|---|---|---|
| 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 @vitest/mocker
ES modules (import)
import mocker from "@vitest/mocker";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const mocker = require("@vitest/mocker");
// Any Node.js version:
const mocker = await import("@vitest/mocker");Module format by version
Derived from the type, main and exports fields of every stable release on npm (65 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 2.1.5 – 5.0.0 | ESM-only | Nov 13, 2024 |
Frequently asked
Is @vitest/mocker ESM-only?
@vitest/mocker@5.0.0 is ESM-only. @vitest/mocker has been ESM-only since its first stable release. There is no version you can require() on Node.js 18 or older.
Which version of @vitest/mocker still supports CommonJS / require()?
None. @vitest/mocker has always been ESM-only. Use import, or await import("@vitest/mocker") from CommonJS.
How do I use @vitest/mocker from a CommonJS file?
Use a dynamic import: const mod = await import("@vitest/mocker"). On Node.js 20.19+, 22.12+ and newer, a plain require("@vitest/mocker") also works for ESM packages that do not use top-level await.
Does @vitest/mocker work in Bun?
Yes. import "@vitest/mocker" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does @vitest/mocker ship TypeScript types?
Yes. @vitest/mocker 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
- @babel/plugin-syntax-import-attributes 7.29.7CommonJS
- @babel/helper-create-class-features-plugin 8.0.1ESM-only
- @radix-ui/react-roving-focus 1.1.19Dual
- @jest/environment 30.5.1CommonJS
- @smithy/util-middleware 4.5.2CommonJS
- @aws-sdk/region-config-resolver 3.972.48CommonJS
- @aws-sdk/util-user-agent-browser 3.972.45CommonJS
- @radix-ui/react-dialog 1.1.23Dual