canirequire › ESM-only › react-dnd
Is react-dnd ESM-only? Can you require() it?
Drag and Drop for React
Last verified Sep 9, 2026 against react-dnd@16.0.1. JSON
ESM-only ESM-only since 16.0.0 — last CommonJS version is 15.1.2
react-dnd dropped its CommonJS build in 16.0.0 (April 2022). The last version you can require() on every Node.js version, including 18 and older, is 15.1.2, published Mar 31, 2022.
On Node.js 20.19+, 22.12+ and every newer release, require("react-dnd") works anyway: Node can load synchronous ES modules through require(). Verified on Node 20, 22, 24, 26. Node.js 18 and older still fail with ERR_REQUIRE_ESM.
Does react-dnd@16.0.1 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("react-dnd") from a CommonJS file and import "react-dnd" from an ES module.
| Runtime | require("react-dnd") | import "react-dnd" |
|---|---|---|
| Node.js 18 | ✗ failsERR_REQUIRE_ESM | ✓ 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 react-dnd
ES modules (import)
import reactDnd from "react-dnd";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const reactDnd = require("react-dnd");
// Any Node.js version:
const reactDnd = await import("react-dnd");
// Or pin the last CommonJS release:
// npm install react-dnd@15.1.2Module format by version
Derived from the type, main and exports fields of every stable release on npm (135 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 16.0.0 – 16.0.1 | ESM-only | Apr 5, 2022 |
| 15.1.0 – 15.1.2 | Dual (CommonJS + ESM) | Feb 5, 2022 |
| 15.0.1 – 15.0.2 | CommonJS | Feb 4, 2022 |
| 15.0.0 | ESM-only | Feb 4, 2022 |
| 10.0.0 – 14.0.5 | CommonJS | Dec 7, 2019 |
| 8.0.0 – 9.5.1 | ESM-only | Jun 14, 2019 |
| 5.0.0 – 7.7.0 | CommonJS | Jun 19, 2018 |
Frequently asked
Is react-dnd ESM-only?
react-dnd@16.0.1 is ESM-only. react-dnd dropped its CommonJS build in 16.0.0 (April 2022). The last version you can require() on every Node.js version, including 18 and older, is 15.1.2, published Mar 31, 2022.
Which version of react-dnd still supports CommonJS / require()?
15.1.2 is the last version of react-dnd with a CommonJS build. Install it with "npm install react-dnd@15.1.2". Every version from 16.0.0 on is ESM-only.
How do I use react-dnd from a CommonJS file?
Use a dynamic import: const mod = await import("react-dnd"). On Node.js 20.19+, 22.12+ and newer, a plain require("react-dnd") also works for ESM packages that do not use top-level await. Alternatively pin react-dnd@15.1.2.
Does react-dnd work in Bun?
Yes. import "react-dnd" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does react-dnd ship TypeScript types?
Yes. react-dnd bundles its own type declarations; no @types package is needed.
Links
Other esm-only packages
- ansi-styles 7.0.0last CJS
5.2.0 - strip-ansi 7.2.0last CJS
6.0.1 - commander 15.0.0last CJS
14.0.3 - supports-color 11.0.0last CJS
8.1.1 - chalk 6.0.0last CJS
4.1.2 - tslib 2.8.1last CJS
2.5.2 - string-width 8.2.2last CJS
4.2.3 - ansi-regex 6.3.0last CJS
5.0.1
Similar popularity
- file-saver 2.0.5CommonJS
- log4js 6.9.1CommonJS
- eslint-plugin-simple-import-sort 14.0.0CommonJS
- jasmine-core 7.0.2CommonJS
- nock 14.0.17CommonJS
- echarts 6.1.0Dual
- eslint-plugin-promise 7.3.0CommonJS
- stylelint-scss 7.2.0ESM-only