
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
Convert ESM dependencies to CommonJS
The creation of package was fueled by pure rage. Developers started to ship ESM only packages which are not able to work with CommonJS. This would be fine if NodeJS would provide full interoperability between the different module specs, but instead it's breaking the ecosystem that actually was supporting this through transpilers.
Some projects cannot use ESM or cannot switch easily their code to be async, which is required to import ESM modules inside CommonJS modules. There is simply no way for some projects to update to the latest version of some crucial packages, and there's no way they can patch their security vulnerabilities if their package is ESM only.
commonizer will give an option for those in need until they can upgrade their
code to be ESM only as well.
This package will:
exports field from their package.json# Locally
npm i commonizer --save-dev
# Globally
npm i commonizer -g
Inside your package.json, under commonizer property, you can specify which
modules you want to transpile.
{
"commonizer": [
"node_modules/chalk",
"node_modules/figures",
"node_modules/figures/node_modules/escape-string-regexp"
]
}
commonizernpx commonizer
You may specify if you want to do the removal of exports field or
transpilation only.
{
"commonizer": [
[
"node_modules/html-void-elements",
[
"node_modules/parse5",
{
"exports": true,
"commonjs": false
}
]
]
]
}
The above example was necessary in my case because other CJS modules were trying
to load scripts directly (eg. parse5/lib/parse.js) which were not listed in
the exports field and NodeJS prevents this.
To keep it safe. Users can decide exactly what to transpile. We don't want to transpile CommonJS code "by accident".
node_modules also?commonizer will transpile any path you want, not just node_modules.
NodeJS will throw an error when you encounter such.
Error [ERR_REQUIRE_ESM]: require() of ES Module /home/user/project/node_modules/esm-module/index.js
from /home/user/project/my-commonjs-file.js not supported.
Use the path node_modules/esm-module.
commonizer will first create a backup of the original module.
node_modules/esm-module => node_modules/esm-module__original
Simply delete the transpiled folder and rename the backup.
Below I show an example of a list I have for a bigger, mature project. Works well there, but I cannot be sure it'll work in every scenario. This is a temporary solution to help overcome the surfacing issues during a project's transition period.
{
"commonizer": [
"node_modules/chalk",
"node_modules/figures",
"node_modules/figures/node_modules/escape-string-regexp",
"node_modules/is-unicode-supported",
"node_modules/react-markdown",
"node_modules/vfile",
"node_modules/vfile-message",
"node_modules/unist-util-stringify-position",
"node_modules/unified",
"node_modules/bail",
"node_modules/is-plain-obj",
"node_modules/trough",
"node_modules/remark-parse",
"node_modules/mdast-util-from-markdown",
"node_modules/mdast-util-to-string",
"node_modules/micromark",
"node_modules/micromark-util-combine-extensions",
"node_modules/micromark-util-chunked",
"node_modules/micromark-factory-space",
"node_modules/micromark-util-character",
"node_modules/micromark-core-commonmark",
"node_modules/micromark-core-gfm",
"node_modules/micromark-util-classify-character",
"node_modules/micromark-util-resolve-all",
"node_modules/decode-named-character-reference",
"node_modules/character-entities",
"node_modules/micromark-util-subtokenize",
"node_modules/micromark-factory-destination",
"node_modules/micromark-factory-label",
"node_modules/micromark-factory-title",
"node_modules/micromark-factory-whitespace",
"node_modules/micromark-util-normalize-identifier",
"node_modules/micromark-util-html-tag-name",
"node_modules/micromark-util-decode-numeric-character-reference",
"node_modules/micromark-util-decode-string",
"node_modules/remark-rehype",
"node_modules/mdast-util-to-hast",
"node_modules/unist-builder",
"node_modules/unist-util-visit",
"node_modules/unist-util-visit-parents",
"node_modules/unist-util-visit/node_modules/unist-util-visit-parents",
"node_modules/unist-util-is",
"node_modules/unist-util-position",
"node_modules/unist-util-generated",
"node_modules/mdast-util-definitions",
"node_modules/mdast-util-definitions/node_modules/unist-util-visit",
"node_modules/micromark-util-sanitize-uri",
"node_modules/micromark-util-encode",
"node_modules/property-information",
"node_modules/hast-util-whitespace",
"node_modules/space-separated-tokens",
"node_modules/comma-separated-tokens",
"node_modules/remark-gfm",
"node_modules/micromark-extension-gfm",
"node_modules/micromark-extension-gfm-autolink-literal",
"node_modules/micromark-extension-gfm-footnote",
"node_modules/micromark-extension-gfm-strikethrough",
"node_modules/micromark-extension-gfm-table",
"node_modules/micromark-extension-gfm-tagfilter",
"node_modules/micromark-extension-gfm-task-list-item",
"node_modules/mdast-util-gfm",
"node_modules/mdast-util-gfm-autolink-literal",
"node_modules/ccount",
"node_modules/mdast-util-find-and-replace",
"node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp",
"node_modules/mdast-util-find-and-replace/node_modules/unist-util-visit-parents",
"node_modules/mdast-util-gfm-footnote",
"node_modules/mdast-util-to-markdown",
"node_modules/mdast-util-gfm-strikethrough",
"node_modules/mdast-util-gfm-table",
"node_modules/markdown-table",
"node_modules/mdast-util-gfm-task-list-item",
"node_modules/rehype-raw",
"node_modules/hast-util-raw",
"node_modules/hast-util-from-parse5",
"node_modules/hast-util-from-parse5/node_modules/hastscript",
"node_modules/hast-util-from-parse5/node_modules/hast-util-parse-selector",
"node_modules/vfile-location",
"node_modules/web-namespaces",
"node_modules/hast-util-to-parse5",
"node_modules/hast-to-hyperscript",
"node_modules/zwitch",
"node_modules/html-void-elements",
[
"node_modules/parse5",
{
"exports": true,
"commonjs": false
}
],
"node_modules/unified/node_modules/is-plain-obj",
"node_modules/mdast-util-to-hast/node_modules/mdast-util-definitions",
"node_modules/mdast-util-to-hast/node_modules/mdast-util-definitions/node_modules/unist-util-visit",
"node_modules/mdast-util-to-hast/node_modules/unist-util-visit-parents"
]
}
I didn't read through what I wrote here :)
FAQs
Convert ESM dependencies to CommonJS
We found that commonizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.