esbuild を使用して、cjs と esm のエントリ ポイントが混在する npm パッケージに依存するコードを --platform=node でバンドルする場合は、次の経験則を使用します。
cjs と esm の違いについて疑問がある場合は、「Node.js: cjs、バンドラー、および esm の簡単な歴史」を参照してください。
--platform=node を指定して esbuild バンドル コードを実行すると、次のいずれかのランタイム エラーが発生する可能性があります:
Error: Dynamic require of "<module_name>" is not supported
Error [ERR_REQUIRE_ESM]: require() of ES Module (...) from (...) not supported. Instead change the require of (...) in (...) to a dynamic import() which is available in all CommonJS modules.
これは、次の制限のいずれかによるものです:
esbuild の esm と cjs 間の変換機能は限られています。さらに、一部のシナリオは esbuild でサポートされていますが、Node.js 自体ではサポートされていません。 esbuild@0.24.0 の時点でサポートされている内容を次の表にまとめます。
Format | Scenario | Supported? |
---|---|---|
cjs | static import | Yes |
cjs | dynamic import() | Yes |
cjs | top-level await | No |
cjs | --packages=external of esm entry point | No* |
esm | require() of user modules** | Yes*** |
esm | require() of node:* modules | No**** |
esm | --packages=external of cjs entry point | Yes |
* esbuild ではサポートされていますが、Node.js ではサポートされていません
** npm パッケージまたは相対パス ファイルを指します。
*** ユーザー モジュールはサポートされていますが、いくつかの注意点があります: __dirname と __filename はポリフィルなしではサポートされません。
**** ノード:* モジュールは同じポリフィルでサポートできます。
以下は、ポリフィルを使用しない場合のこれらのシナリオの詳細な説明です。
次の npm パッケージの例を使用します:
静的インポートを含むesmモジュール:
Error: Dynamic require of "<module_name>" is not supported
非同期関数内に動的 import() を含む esm モジュール:
Error [ERR_REQUIRE_ESM]: require() of ES Module (...) from (...) not supported. Instead change the require of (...) in (...) to a dynamic import() which is available in all CommonJS modules.
動的 import() とトップレベルの await を備えた esm モジュール:
import { version } from "node:process"; export function getVersion() { return version; }
require() 呼び出しを含む cjs モジュール:
export async function getVersion() { const { version } = await import("node:process"); return version; }
次の引数を使用して esbuild を実行します:
const { version } = await import("node:process"); export function getVersion() { return version; }
および次のコード:
const { version } = require("node:process"); exports.getVersion = function() { return version; }
次のものが生成され、問題なく動作します。
esbuild --bundle --format=cjs --platform=node --outfile=bundle.cjs src/main.js
次のものが生成され、問題なく動作します。
import { getVersion } from "{npm-package}"; (async () => { // version can be `string` or `Promise<string>` const version = await getVersion(); console.log(version); })();
動的 import() は cjs モジュールでも許可されているため、require() に変換されないことに注意してください。
esbuild は次のエラーで失敗します:
// node_modules/static-import/index.js var import_node_process = require("node:process"); function getVersion() { return import_node_process.version; } // src/main.js (async () => { const version2 = await getVersion(); console.log(version2); })();
--packages=external の使用は、すべての npm パッケージで成功します:
// (...esbuild auto-generated helpers...) // node_modules/dynamic-import/index.js async function getVersion() { const { version } = await import("node:process"); return version; } // src/main.js (async () => { const version = await getVersion(); console.log(version); })();
が生成するもの:
[ERROR] Top-level await is currently not supported with the "cjs" output format node_modules/top-level-await/index.js:1:20: 1 │ const { version } = await import("node:process"); ╵ ~~~~~
ただし、Nodes.js では cjs モジュールが esm モジュールをインポートすることを許可していないため、これらはすべて実行に失敗します。
esbuild --packages=external --format=cjs --platform=node --outfile=bundle.cjs src/main.js
次の引数を使用して esbuild を実行します:
var npm_package_import = require("{npm-package}"); (async () => { const version = await (0, npm_package_import.getVersion)(); console.log(version); })();
src/main.js
/(...)/bundle.cjs:1 var import_static_import = require("static-import"); ^ Error [ERR_REQUIRE_ESM]: require() of ES Module /(...)/node_modules/static-import/index.js from /(...)/bundle.cjs not supported. Instead change the require of index.js in /(...)/bundle.cjs to a dynamic import() which is available in all CommonJS modules.
次のものが生成され、問題なく動作します:
esbuild --bundle --format=esm --platform=node --outfile=bundle.mjs src/main.js
src/main.js
const { getVersion } = require("static-import"); console.log(getVersion());
は次のものを生成します:
// (...esbuild auto-generated helpers...) // node_modules/static-import/index.js var static_import_exports = {}; __export(static_import_exports, { getVersion: () => getVersion }); import { version } from "node:process"; function getVersion() { return version; } var init_static_import = __esm({ "node_modules/static-import/index.js"() { } }); // src/main.js var { getVersion: getVersion2 } = (init_static_import(), __toCommonJS(static_import_exports)); console.log(getVersion2());
しかし、実行に失敗します:
import { getVersion } from "require"; console.log(getVersion());
--packages=external の使用は、cjs エントリ ポイントを含むすべての npm パッケージで成功します。例:
// (...esbuild auto-generated helpers...) var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, { get: (a, b) => (typeof require !== "undefined" ? require : a)[b] }) : x)(function(x) { if (typeof require !== "undefined") return require.apply(this, arguments); throw Error('Dynamic require of "' + x + '" is not supported'); }); // (...esbuild auto-generated helpers...) // node_modules/require/index.js var require_require = __commonJS({ "node_modules/require/index.js"(exports) { var { version } = __require("node:process"); exports.getVersion = function() { return version; }; } }); // src/main.js var import_require = __toESM(require_require()); console.log((0, import_require.getVersion)());
と:
src/index.js
Error: Dynamic require of "node:process" is not supported
esm モジュールは cjs エントリ ポイントを含む npm パッケージをインポートできるため、問題なく動作するほぼそのままの出力が生成されます。
esbuild --packages=external --format=esm --platform=node --outfile=bundle.mjs src/main.js
この投稿が、現在および将来の esbuild 出力のトラブルシューティングに役立つことを願っています。以下からご意見をお聞かせください!
以上がNode.js と esbuild: cjs と esm の混合に注意してくださいの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。