canirequire

canirequireCommonJS › emoji-regex

Is emoji-regex ESM-only? Can you require() it?

A regular expression to match all Emoji-only symbols as per the Unicode Standard.

Last verified Sep 9, 2026 against emoji-regex@10.6.0. JSON

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

emoji-regex ships CommonJS only. require("emoji-regex") works everywhere. import "emoji-regex" 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
10.6.0 (Oct 13, 2025)
Module format
CommonJS
Last CommonJS version
10.6.0
TypeScript types
Bundled
Node engines
not declared
Weekly downloads
295.7M
License
MIT

Does emoji-regex@10.6.0 actually load? Runtime test results

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

Runtimerequire("emoji-regex")import "emoji-regex"
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 emoji-regex

ES modules (import)

import emojiRegex from "emoji-regex";

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 emojiRegex = require("emoji-regex");

Module format by version

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

VersionsFormatFirst published
1.0.0 – 10.6.0CommonJSSep 28, 2014

Frequently asked

Is emoji-regex ESM-only?

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

Yes. import emojiRegex from "emoji-regex" 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 emoji-regex work in Bun?

Yes. import "emoji-regex" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does emoji-regex ship TypeScript types?

Yes. emoji-regex bundles its own type declarations; no @types package is needed.

Links

Other commonjs packages

Similar popularity