canirequire › ESM-only › @vitest/runner
Is @vitest/runner ESM-only? Can you require() it?
Vitest test runner
Last verified Sep 9, 2026 against @vitest/runner@4.1.11. JSON
ESM-only ESM-only — it has never shipped a CommonJS build
@vitest/runner 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/runner") 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/runner@4.1.11 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("@vitest/runner") from a CommonJS file and import "@vitest/runner" from an ES module.
| Runtime | require("@vitest/runner") | import "@vitest/runner" |
|---|---|---|
| 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/runner
ES modules (import)
import runner from "@vitest/runner";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const runner = require("@vitest/runner");
// Any Node.js version:
const runner = await import("@vitest/runner");Module format by version
Derived from the type, main and exports fields of every stable release on npm (127 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 2.1.4 – 4.1.11 | ESM-only | Oct 28, 2024 |
Frequently asked
Is @vitest/runner ESM-only?
@vitest/runner@4.1.11 is ESM-only. @vitest/runner 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/runner still supports CommonJS / require()?
None. @vitest/runner has always been ESM-only. Use import, or await import("@vitest/runner") from CommonJS.
How do I use @vitest/runner from a CommonJS file?
Use a dynamic import: const mod = await import("@vitest/runner"). On Node.js 20.19+, 22.12+ and newer, a plain require("@vitest/runner") also works for ESM packages that do not use top-level await.
Does @vitest/runner work in Bun?
Yes. import "@vitest/runner" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does @vitest/runner ship TypeScript types?
Yes. @vitest/runner 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/util-user-agent-node 3.973.60CommonJS
- @sinclair/typebox 0.34.52Dual
- @aws-sdk/middleware-user-agent 3.972.74CommonJS
- @jridgewell/remapping 2.3.5Dual
- @aws-sdk/middleware-logger 3.972.44CommonJS
- @radix-ui/react-collection 1.1.15Dual
- @radix-ui/react-focus-scope 1.1.16Dual
- @bcoe/v8-coverage 1.0.2CommonJS