canirequire

canirequireESM-only › @vitest/expect

Is @vitest/expect ESM-only? Can you require() it?

Jest's expect matchers as a Chai plugin

Last verified Sep 9, 2026 against @vitest/expect@5.0.0. JSON

ESM-only ESM-only — it has never shipped a CommonJS build

@vitest/expect 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/expect") 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.

Latest
5.0.0 (Sep 3, 2026)
Module format
ESM-only
Last CommonJS version
none
ESM-only since
0.27.0 (Jan 9, 2023)
TypeScript types
Bundled
Node engines
not declared
License
MIT

Does @vitest/expect@5.0.0 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("@vitest/expect") from a CommonJS file and import "@vitest/expect" from an ES module.

Runtimerequire("@vitest/expect")import "@vitest/expect"
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/expect

ES modules (import)

import expect from "@vitest/expect";

CommonJS (require)

// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const expect = require("@vitest/expect");

// Any Node.js version:
const expect = await import("@vitest/expect");

Module format by version

Derived from the type, main and exports fields of every stable release on npm (132 versions; the newest 60 shown).

VersionsFormatFirst published
2.1.5 – 5.0.0ESM-onlyNov 13, 2024

Frequently asked

Is @vitest/expect ESM-only?

@vitest/expect@5.0.0 is ESM-only. @vitest/expect 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/expect still supports CommonJS / require()?

None. @vitest/expect has always been ESM-only. Use import, or await import("@vitest/expect") from CommonJS.

How do I use @vitest/expect from a CommonJS file?

Use a dynamic import: const mod = await import("@vitest/expect"). On Node.js 20.19+, 22.12+ and newer, a plain require("@vitest/expect") also works for ESM packages that do not use top-level await.

Does @vitest/expect work in Bun?

Yes. import "@vitest/expect" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does @vitest/expect ship TypeScript types?

Yes. @vitest/expect bundles its own type declarations; no @types package is needed.

Links

Other esm-only packages

Similar popularity