canirequire

canirequireCommonJS › babel-plugin-add-module-exports

Is babel-plugin-add-module-exports ESM-only? Can you require() it?

Fix babel/babel#2212

Last verified Sep 9, 2026 against babel-plugin-add-module-exports@1.0.4. JSON

CommonJS CommonJS — require() works on every Node.js version

babel-plugin-add-module-exports ships CommonJS only. require("babel-plugin-add-module-exports") works everywhere. import "babel-plugin-add-module-exports" 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.

Latest
1.0.4 (Sep 8, 2020)
Module format
CommonJS
Last CommonJS version
1.0.4
TypeScript types
None
Node engines
not declared
Weekly downloads
695K
License
MIT

Does babel-plugin-add-module-exports@1.0.4 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("babel-plugin-add-module-exports") from a CommonJS file and import "babel-plugin-add-module-exports" from an ES module.

Runtimerequire("babel-plugin-add-module-exports")import "babel-plugin-add-module-exports"
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 babel-plugin-add-module-exports

ES modules (import)

import babelPluginAddModuleExports from "babel-plugin-add-module-exports";

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 babelPluginAddModuleExports = require("babel-plugin-add-module-exports");

Module format by version

Derived from the type, main and exports fields of every stable release on npm (20 versions; the newest 20 shown).

VersionsFormatFirst published
0.0.0 – 1.0.4CommonJSNov 10, 2015

Frequently asked

Is babel-plugin-add-module-exports ESM-only?

babel-plugin-add-module-exports@1.0.4 is a CommonJS package. babel-plugin-add-module-exports ships CommonJS only. require("babel-plugin-add-module-exports") works everywhere. import "babel-plugin-add-module-exports" 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 babel-plugin-add-module-exports with ES module syntax?

Yes. import babelPluginAddModuleExports from "babel-plugin-add-module-exports" 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 babel-plugin-add-module-exports work in Bun?

Yes. import "babel-plugin-add-module-exports" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does babel-plugin-add-module-exports ship TypeScript types?

No. babel-plugin-add-module-exports ships no type declarations and there is no @types package for it.

Links

Other commonjs packages

Similar popularity