从 CommonJS 迁移到原生 ES 模块
将 require/module.exports 转换为 import/export,并处理双重软件包和互操作性问题。
从 CommonJS 迁移到原生 ES 模块 是 CoddyKit 上的免费 Node.js Backend Development Bootcamp 课时。 这是第 1 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Node.js Backend Development Bootcamp 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Node.js Backend Development Bootcamp 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Two Module Systems, One Runtime
Node.js historically used CommonJS (CJS): you load code with require() and expose it with module.exports. Modern JavaScript has a built-in standard, ES Modules (ESM), using import and export.
- CommonJS loads modules synchronously at runtime.
- ESM is statically analyzed, loaded asynchronously, and is the official ECMAScript standard.
Node now supports both, but mixing them has rules. This lesson walks you through migrating a backend project from CJS to native ESM cleanly.
// CommonJS (old)
const fs = require('fs');
module.exports = { readConfig };
// ES Modules (new)
import fs from 'fs';
export { readConfig };Telling Node You Mean ESM
Node decides how to treat a file based on its extension and the nearest package.json:
"type": "module"inpackage.json→.jsfiles are treated as ESM.- No
typefield (or"commonjs") →.jsfiles are CommonJS. .mjsis always ESM;.cjsis always CommonJS, regardless oftype.
The cleanest migration step is adding "type": "module" once, then fixing the files it breaks.
{
"name": "my-api",
"version": "1.0.0",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js"
}
}Converting Exports
Replace module.exports and exports.foo with export statements.
module.exports = X(single value) →export default X.exports.foo = ...(multiple named) →export const foo = ...or a groupedexport { foo, bar }.
Prefer named exports for utilities so consumers get autocompletion and clearer imports.
// Before (CJS)
// module.exports.add = (a, b) => a + b;
// module.exports.PI = 3.14159;
// After (ESM)
export const add = (a, b) => a + b;
export const PI = 3.14159;
console.log(add(2, 3)); // 5
console.log(PI); // 3.14159Converting Imports
Replace require() with import. Match the export style:
- Named:
const { add } = require('./math')→import { add } from './math.js'. - Default:
const express = require('express')→import express from 'express'.
Critical rule: in ESM, relative imports of your own files must include the file extension (.js). Node will not guess it for you like CommonJS did.
// Before (CJS)
// const { add } = require('./math');
// After (ESM) — note the explicit .js extension
import { add } from './math.js';
console.log(add(10, 5)); // 15No More __dirname or __filename
ESM does not provide the CommonJS globals __dirname and __filename. If your backend builds file paths (config, uploads, templates), you must recreate them from import.meta.url.
Modern Node (20.11+) also exposes import.meta.dirname and import.meta.filename directly, which is the simplest option going forward.
import { fileURLToPath } from 'node:url';
import { dirname, join } from 'node:path';
// Classic portable approach
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const configPath = join(__dirname, 'config.json');
console.log(configPath);
// Node 20.11+ shortcut:
// const dir = import.meta.dirname;Importing JSON and Built-ins
Two more changes that bite backend projects:
- JSON:
require('./data.json')no longer works directly. Use an import attribute:import data from './data.json' with { type: 'json' }. - Core modules: prefer the
node:prefix (e.g.import { readFile } from 'node:fs/promises'). It is unambiguous and future-proof.
If you target older Node, reading JSON via fs avoids attribute-syntax compatibility concerns entirely.
import { readFile } from 'node:fs/promises';
// Robust, version-agnostic way to load JSON in ESM
const raw = await readFile(new URL('./pkg.json', import.meta.url));
const pkg = JSON.parse(raw);
console.log(pkg.name);Top-Level await Is a Superpower
One genuine upgrade ESM gives backend code: top-level await. In CommonJS you had to wrap async startup in an IIFE. In an ESM module you can await directly at the top level.
This makes database connections, config fetching, and warm-up logic much cleaner in server entry files.
// ESM entry file
async function connectDb() {
await new Promise((r) => setTimeout(r, 50));
return { status: 'connected' };
}
const db = await connectDb(); // top-level await — no IIFE needed
console.log('DB:', db.status);Interop: ESM Importing CommonJS
You will still depend on CJS-only npm packages. Good news: ESM can import CommonJS. Node wraps the package's module.exports as the default export.
- Use
import pkg from 'cjs-lib'to getmodule.exports. - Node tries to detect named exports too, but for complex CJS this can fail — destructure from the default instead.
// 'lodash' is CommonJS; the whole export object is the default
import _ from 'lodash';
const { chunk } = _; // safe: destructure from default
console.log(chunk([1, 2, 3, 4], 2)); // [[1,2],[3,4]]Interop: CommonJS Loading ESM
The reverse is harder. A CommonJS file cannot require() an ESM module synchronously (older Node throws ERR_REQUIRE_ESM). Options:
- Use a dynamic
import(), which returns a Promise — works from inside async functions in CJS. - Node 22+ added experimental synchronous
require()of ESM, but don't rely on it for portable code.
This asymmetry is the main reason teams migrate the whole codebase to ESM rather than mixing.
// Inside a CommonJS file:
async function run() {
// dynamic import works even from CJS
const { add } = await import('./math.mjs');
console.log(add(4, 6)); // 10
}
run();Dual-Package Publishing
If you publish a library, some users are ESM and some are CJS. The modern solution is the exports field with conditional exports, shipping both builds.
importcondition → the ESM entry.requirecondition → the CJS entry.
Beware the dual-package hazard: if both builds get loaded, you get two copies of your module state (e.g. two separate singletons). Keep stateful logic in a single internal module both builds import.
{
"name": "my-lib",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
}A Pragmatic Migration Checklist
A reliable order of operations for an existing backend:
- Add
"type": "module"topackage.json. - Rename any file that must stay CJS to
.cjs. - Convert
require/module.exportstoimport/export. - Add
.jsextensions to all relative imports. - Replace
__dirname/__filenamewithimport.metahelpers. - Fix JSON imports and CJS-default interop.
- Run the test suite; let failures point to remaining
requirecalls.
Tools like cjstoesm or codemods can automate the bulk edits, but always review the diff.
Quick Check
You convert a backend file to ESM and add "type": "module". Suddenly an import of your own helper throws ERR_MODULE_NOT_FOUND. What is the most likely fix?
Recap
You migrated a Node.js backend from CommonJS to native ES Modules. Key takeaways:
- Opt in with
"type": "module"; use.cjs/.mjsto override per file. - Swap
require/module.exportsforimport/export, and always include the.jsextension on relative imports. - Recreate
__dirnameviaimport.meta.url(or useimport.meta.dirname). - ESM can import CJS (as default export); CJS must use dynamic
import()for ESM. - Top-level
awaitsimplifies async startup. - For libraries, use conditional
exportsand beware the dual-package hazard.
With these rules, you can confidently modernize any Node service to standard ES Modules.
常见问题解答
「从 CommonJS 迁移到原生 ES 模块」课时是免费的吗?
是的 — 「从 CommonJS 迁移到原生 ES 模块」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Node.js Backend Development Bootcamp 课程的其余内容,请升级到 CoddyKit PRO。 Node.js Backend Development Bootcamp 课程共包含 4 节课。
「从 CommonJS 迁移到原生 ES 模块」这节课中我会学到什么?
将 require/module.exports 转换为 import/export,并处理双重软件包和互操作性问题。 你通过在浏览器中直接运行的动手代码来练习 Node.js Backend Development Bootcamp,全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Node.js Backend Development Bootcamp 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Node.js Backend Development Bootcamp 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 1 节课,共 4 节。
「从 CommonJS 迁移到原生 ES 模块」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Node.js Backend Development Bootcamp 课中编写并运行代码吗?
能。每节 Node.js Backend Development Bootcamp 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。
此课程中的所有课时
- 从 CommonJS 迁移到原生 ES 模块
- 为 Node 后端项目配置 tsconfig
- 类型安全的环境配置与运行时验证
- 使用 tsx、热重载与源映射快速迭代