canirequire

canirequireCommonJS › 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.

Latest
5.2.0 (Jun 29, 2019)
Module format
CommonJS
Last CommonJS version
5.2.0
TypeScript types
@types/rollup-plugin-node-resolve
Node engines
not declared
Weekly downloads
654K
License
MIT

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.

Runtimerequire("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).

VersionsFormatFirst published
1.4.0 – 5.2.0CommonJSFeb 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

Similar popularity