canirequire › CommonJS › glob-parent
Is glob-parent ESM-only? Can you require() it?
Extract the non-magic parent path from a glob string.
Last verified Sep 9, 2026 against glob-parent@6.0.2. JSON
CommonJS CommonJS — require() works on every Node.js version
glob-parent ships CommonJS only. require("glob-parent") works everywhere. import "glob-parent" 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 glob-parent@6.0.2 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("glob-parent") from a CommonJS file and import "glob-parent" from an ES module.
| Runtime | require("glob-parent") | import "glob-parent" |
|---|---|---|
| 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 glob-parent
ES modules (import)
import globParent from "glob-parent";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 globParent = require("glob-parent");Module format by version
Derived from the type, main and exports fields of every stable release on npm (16 versions; the newest 16 shown).
| Versions | Format | First published |
|---|---|---|
| 1.0.0 – 6.0.2 | CommonJS | Jan 12, 2015 |
Frequently asked
Is glob-parent ESM-only?
glob-parent@6.0.2 is a CommonJS package. glob-parent ships CommonJS only. require("glob-parent") works everywhere. import "glob-parent" 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 glob-parent with ES module syntax?
Yes. import globParent from "glob-parent" 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 glob-parent work in Bun?
Yes. import "glob-parent" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does glob-parent ship TypeScript types?
Not bundled. Install the community types with "npm install -D @types/glob-parent".
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
- emoji-regex 10.6.0CommonJS
- p-limit 7.3.2ESM-only
- which 7.0.0CommonJS
- json-schema-traverse 1.0.0CommonJS
- undici-types 8.10.2CommonJS
- yallist 5.0.0Dual
- safe-buffer 5.2.1CommonJS
- balanced-match 4.0.4Dual