canirequire › CommonJS › rollup-plugin-node-resolve
Is rollup-plugin-node-resolve ESM-only? Can you require() it?
Bundle third-party dependencies in node_modules
Last verified Sep 9, 2026 against rollup-plugin-node-resolve@5.2.0. JSON
CommonJS CommonJS — require() works on every Node.js version
rollup-plugin-node-resolve ships CommonJS only. require("rollup-plugin-node-resolve") works everywhere. import "rollup-plugin-node-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.
It also declares a "module" field, so bundlers such as webpack, Vite and esbuild pick up an ESM build for tree-shaking.
Deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-node-resolve.
Does rollup-plugin-node-resolve@5.2.0 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("rollup-plugin-node-resolve") from a CommonJS file and import "rollup-plugin-node-resolve" from an ES module.
| Runtime | require("rollup-plugin-node-resolve") | import "rollup-plugin-node-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 rollup-plugin-node-resolve
ES modules (import)
import rollupPluginNodeResolve from "rollup-plugin-node-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 rollupPluginNodeResolve = require("rollup-plugin-node-resolve");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 |
|---|---|---|
| 1.4.0 – 5.2.0 | CommonJS | Feb 7, 2016 |
Frequently asked
Is rollup-plugin-node-resolve ESM-only?
rollup-plugin-node-resolve@5.2.0 is a CommonJS package. rollup-plugin-node-resolve ships CommonJS only. require("rollup-plugin-node-resolve") works everywhere. import "rollup-plugin-node-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 rollup-plugin-node-resolve with ES module syntax?
Yes. import rollupPluginNodeResolve from "rollup-plugin-node-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 rollup-plugin-node-resolve work in Bun?
Yes. import "rollup-plugin-node-resolve" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does rollup-plugin-node-resolve ship TypeScript types?
Not bundled. Install the community types with "npm install -D @types/rollup-plugin-node-resolve".
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
- babel-plugin-add-module-exports 1.0.4CommonJS
- gulp-sourcemaps 3.0.0CommonJS
- tape 5.10.2CommonJS
- web3 4.16.0Dual
- browser-sync 3.0.4CommonJS
- jest-styled-components 7.4.0CommonJS
- babel-plugin-transform-flow-strip-types 6.22.0CommonJS
- watch 1.0.2CommonJS