canirequire › CommonJS › es6-promise
Is es6-promise ESM-only? Can you require() it?
A lightweight library that provides tools for organizing asynchronous code
Last verified Sep 9, 2026 against es6-promise@4.2.8. JSON
CommonJS CommonJS — require() works on every Node.js version
es6-promise ships CommonJS only. require("es6-promise") works everywhere. import "es6-promise" 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 es6-promise@4.2.8 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("es6-promise") from a CommonJS file and import "es6-promise" from an ES module.
| Runtime | require("es6-promise") | import "es6-promise" |
|---|---|---|
| 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 es6-promise
ES modules (import)
import es6Promise from "es6-promise";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 es6Promise = require("es6-promise");Module format by version
Derived from the type, main and exports fields of every stable release on npm (34 versions; the newest 34 shown).
| Versions | Format | First published |
|---|---|---|
| 0.1.0 – 4.2.8 | CommonJS | Dec 16, 2013 |
Frequently asked
Is es6-promise ESM-only?
es6-promise@4.2.8 is a CommonJS package. es6-promise ships CommonJS only. require("es6-promise") works everywhere. import "es6-promise" 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 es6-promise with ES module syntax?
Yes. import es6Promise from "es6-promise" 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 es6-promise work in Bun?
Yes. import "es6-promise" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does es6-promise ship TypeScript types?
Yes. es6-promise 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
- connect 3.7.0CommonJS
- js-base64 3.9.3Dual
- crypto-js 4.2.0CommonJS
- url 0.11.4CommonJS
- cssnano 9.0.4ESM-only
- jwt-decode 4.0.0Dual
- lodash.get 4.4.2CommonJS
- socket.io 4.8.3Dual