canirequire › ESM-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.
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.
| Runtime | require("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.1Module format by version
Derived from the type, main and exports fields of every stable release on npm (113 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 17.1.0 – 17.1.2 | ESM-only | Jun 15, 2026 |
| 7.1.0 – 17.0.1 | CommonJS | Aug 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
- 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
- release-it 21.0.2Dual
- babel-plugin-transform-class-properties 6.24.1CommonJS
- eslint-import-resolver-webpack 0.13.11CommonJS
- styled-system 5.1.5CommonJS
- prompt 1.3.0CommonJS
- benchmark 2.1.4CommonJS
- babel-preset-env 1.7.0CommonJS
- vue-hot-reload-api 2.3.4CommonJS