canirequire › CommonJS › natural-compare
Is natural-compare ESM-only? Can you require() it?
Compare strings containing a mix of letters and numbers in the way a human being would in sort order.
Last verified Sep 9, 2026 against natural-compare@1.4.0. JSON
CommonJS CommonJS — require() works on every Node.js version
natural-compare ships CommonJS only. require("natural-compare") works everywhere. import "natural-compare" 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 natural-compare@1.4.0 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("natural-compare") from a CommonJS file and import "natural-compare" from an ES module.
| Runtime | require("natural-compare") | import "natural-compare" |
|---|---|---|
| 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 natural-compare
ES modules (import)
import naturalCompare from "natural-compare";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 naturalCompare = require("natural-compare");Module format by version
Derived from the type, main and exports fields of every stable release on npm (2 versions; the newest 2 shown).
| Versions | Format | First published |
|---|---|---|
| 1.2.2 – 1.4.0 | CommonJS | Nov 18, 2014 |
Frequently asked
Is natural-compare ESM-only?
natural-compare@1.4.0 is a CommonJS package. natural-compare ships CommonJS only. require("natural-compare") works everywhere. import "natural-compare" 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 natural-compare with ES module syntax?
Yes. import naturalCompare from "natural-compare" 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 natural-compare work in Bun?
Yes. import "natural-compare" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does natural-compare ship TypeScript types?
Not bundled. Install the community types with "npm install -D @types/natural-compare".
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
- send 1.2.1CommonJS
- y18n 5.0.8Dual
- path-scurry 2.0.2Dual
- acorn-jsx 5.3.2CommonJS
- http-proxy-agent 9.1.0ESM-only
- get-caller-file 2.0.5CommonJS
- serve-static 2.2.1CommonJS
- parent-module 3.2.0ESM-only