canirequire › CommonJS › eslint-friendly-formatter
Is eslint-friendly-formatter ESM-only? Can you require() it?
simple formatter/reporter for eslint that's friendly with Sublime Text and iterm2 'click to open file' functionality
Last verified Sep 9, 2026 against eslint-friendly-formatter@4.0.1. JSON
CommonJS CommonJS — require() works on every Node.js version
eslint-friendly-formatter ships CommonJS only. require("eslint-friendly-formatter") works everywhere. import "eslint-friendly-formatter" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Does eslint-friendly-formatter@4.0.1 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("eslint-friendly-formatter") from a CommonJS file and import "eslint-friendly-formatter" from an ES module.
| Runtime | require("eslint-friendly-formatter") | import "eslint-friendly-formatter" |
|---|---|---|
| Node.js 18 | ✓ works | ✓ 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 eslint-friendly-formatter
ES modules (import)
import eslintFriendlyFormatter from "eslint-friendly-formatter";Named imports from a CommonJS package only work when Node.js can statically detect them. If a named import fails, use the default import and destructure.
CommonJS (require)
const eslintFriendlyFormatter = require("eslint-friendly-formatter");Module format by version
Derived from the type, main and exports fields of every stable release on npm (24 versions; the newest 24 shown).
| Versions | Format | First published |
|---|---|---|
| 1.0.0 – 4.0.1 | CommonJS | Mar 3, 2015 |
Frequently asked
Is eslint-friendly-formatter ESM-only?
eslint-friendly-formatter@4.0.1 is a CommonJS package. eslint-friendly-formatter ships CommonJS only. require("eslint-friendly-formatter") works everywhere. import "eslint-friendly-formatter" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Can I import eslint-friendly-formatter with ES module syntax?
Yes. import eslintFriendlyFormatter from "eslint-friendly-formatter" works in Node.js and Bun because they support importing CommonJS modules. Named imports work only when Node.js can statically detect the exports.
Does eslint-friendly-formatter work in Bun?
Yes. import "eslint-friendly-formatter" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does eslint-friendly-formatter ship TypeScript types?
No. eslint-friendly-formatter ships no type declarations and there is no @types package for it.
Links
Other commonjs packages
- debug 4.4.3CommonJS
- semver 7.8.5CommonJS
- ms 2.1.3CommonJS
- picomatch 4.0.7CommonJS
- ajv 8.20.0CommonJS
- source-map 0.8.0CommonJS
- react-is 19.2.8CommonJS
- readable-stream 4.7.0CommonJS
Similar popularity
- rollup-plugin-uglify 6.0.4CommonJS
- phantomjs 2.1.7CommonJS
- karma-chai 0.1.0CommonJS
- jshint-stylish 2.2.1CommonJS
- ember-export-application-global 2.0.1CommonJS
- eventsource-polyfill 0.9.6CommonJS
- pod-install 1.1.0CommonJS
- documentation 14.0.3ESM-only