Back to Node.js Errors
Node.js Error

ERR_REQUIRE_ESM

Require of ES Module

What does this error mean?

Trying to use require() to load an ES module, which is not supported.

How to fix ERR_REQUIRE_ESM?

Use 'import' instead of 'require()'. Add 'type: module' to package.json. Convert to CommonJS or use ES modules consistently.