canirequire › CommonJS › enhanced-resolve
Is enhanced-resolve ESM-only? Can you require() it?
Offers a async require.resolve function. It's highly configurable.
Last verified Sep 9, 2026 against enhanced-resolve@5.24.5. JSON
CommonJS CommonJS — require() works on every Node.js version
enhanced-resolve ships CommonJS only. require("enhanced-resolve") works everywhere. import "enhanced-resolve" 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 enhanced-resolve@5.24.5 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("enhanced-resolve") from a CommonJS file and import "enhanced-resolve" from an ES module.
| Runtime | require("enhanced-resolve") | import "enhanced-resolve" |
|---|---|---|
| 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 enhanced-resolve
ES modules (import)
import enhancedResolve from "enhanced-resolve";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 enhancedResolve = require("enhanced-resolve");Module format by version
Derived from the type, main and exports fields of every stable release on npm (138 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 4.2.0 – 5.24.5 | CommonJS | Jun 15, 2020 |
Frequently asked
Is enhanced-resolve ESM-only?
enhanced-resolve@5.24.5 is a CommonJS package. enhanced-resolve ships CommonJS only. require("enhanced-resolve") works everywhere. import "enhanced-resolve" 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 enhanced-resolve with ES module syntax?
Yes. import enhancedResolve from "enhanced-resolve" 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 enhanced-resolve work in Bun?
Yes. import "enhanced-resolve" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does enhanced-resolve ship TypeScript types?
Yes. enhanced-resolve bundles its own type declarations; no @types package is needed.
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
- get-proto 1.0.1CommonJS
- slash 5.1.0ESM-only
- ipaddr.js 2.5.0CommonJS
- jiti 2.7.0Dual
- parse-json 8.3.0ESM-only
- shebang-command 2.0.0CommonJS
- require-from-string 2.0.2CommonJS
- tinyexec 1.3.1ESM-only