canirequire

canirequireESM-only › prettier-eslint

Is prettier-eslint ESM-only? Can you require() it?

Formats your JavaScript using prettier followed by eslint --fix

Last verified Sep 9, 2026 against prettier-eslint@17.1.2. JSON

ESM-only ESM-only since 17.1.0 — last CommonJS version is 17.0.1

prettier-eslint dropped its CommonJS build in 17.1.0 (June 2026). The last version you can require() on every Node.js version, including 18 and older, is 17.0.1, published Jun 14, 2026.

On Node.js 20.19+, 22.12+ and every newer release, require("prettier-eslint") 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.

prettier-eslint@17.1.2 declares engines "^20.19.0 || ^22.13.0 || >=24", so Node.js 18 is outside its supported range regardless of module format.

Latest
17.1.2 (Aug 20, 2026)
Module format
ESM-only
Last CommonJS version
17.0.1
ESM-only since
17.1.0 (Jun 15, 2026)
TypeScript types
Bundled
Node engines
^20.19.0 || ^22.13.0 || >=24
Weekly downloads
779K
License
MIT

Does prettier-eslint@17.1.2 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("prettier-eslint") from a CommonJS file and import "prettier-eslint" from an ES module.

Runtimerequire("prettier-eslint")import "prettier-eslint"
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 prettier-eslint

ES modules (import)

import prettierEslint from "prettier-eslint";

CommonJS (require)

// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const prettierEslint = require("prettier-eslint");

// Any Node.js version:
const prettierEslint = await import("prettier-eslint");

// Or pin the last CommonJS release:
// npm install prettier-eslint@17.0.1

Module format by version

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

VersionsFormatFirst published
17.1.0 – 17.1.2ESM-onlyJun 15, 2026
7.1.0 – 17.0.1CommonJSAug 31, 2017

Frequently asked

Is prettier-eslint ESM-only?

prettier-eslint@17.1.2 is ESM-only. prettier-eslint dropped its CommonJS build in 17.1.0 (June 2026). The last version you can require() on every Node.js version, including 18 and older, is 17.0.1, published Jun 14, 2026.

Which version of prettier-eslint still supports CommonJS / require()?

17.0.1 is the last version of prettier-eslint with a CommonJS build. Install it with "npm install prettier-eslint@17.0.1". Every version from 17.1.0 on is ESM-only.

How do I use prettier-eslint from a CommonJS file?

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

Does prettier-eslint work in Bun?

Yes. import "prettier-eslint" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does prettier-eslint ship TypeScript types?

Yes. prettier-eslint bundles its own type declarations; no @types package is needed.

Links

Other esm-only packages

Similar popularity