canirequire

canirequireCommonJS › aria-hidden

Is aria-hidden ESM-only? Can you require() it?

Cast aria-hidden to everything, except...

Last verified Sep 9, 2026 against aria-hidden@1.2.6. JSON

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

aria-hidden ships CommonJS only. require("aria-hidden") works everywhere. import "aria-hidden" 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
1.2.6 (May 19, 2025)
Module format
CommonJS
Last CommonJS version
1.2.6
TypeScript types
Bundled
Node engines
>=10
Weekly downloads
49.3M
License
MIT

Does aria-hidden@1.2.6 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("aria-hidden") from a CommonJS file and import "aria-hidden" from an ES module.

Runtimerequire("aria-hidden")import "aria-hidden"
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 aria-hidden

ES modules (import)

import ariaHidden from "aria-hidden";

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 ariaHidden = require("aria-hidden");

Module format by version

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

VersionsFormatFirst published
1.0.0 – 1.2.6CommonJSOct 23, 2018

Frequently asked

Is aria-hidden ESM-only?

aria-hidden@1.2.6 is a CommonJS package. aria-hidden ships CommonJS only. require("aria-hidden") works everywhere. import "aria-hidden" 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 aria-hidden with ES module syntax?

Yes. import ariaHidden from "aria-hidden" 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 aria-hidden work in Bun?

Yes. import "aria-hidden" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does aria-hidden ship TypeScript types?

Yes. aria-hidden bundles its own type declarations; no @types package is needed.

Links

Other commonjs packages

Similar popularity