ホームページ > ウェブフロントエンド > jsチュートリアル > Node.js と esbuild: cjs と esm の混合に注意してください

Node.js と esbuild: cjs と esm の混合に注意してください

Patricia Arquette
リリース: 2024-12-28 20:49:18
オリジナル
698 人が閲覧しました

Node.js and esbuild: beware of mixing cjs and esm

TL;DR

esbuild を使用して、cjs と esm のエントリ ポイントが混在する npm パッケージに依存するコードを --platform=node でバンドルする場合は、次の経験則を使用します。

  • --bundle を使用する場合は、--format を cjs に設定します。これは、トップレベルの await を備えた esm モジュールを除くすべての場合に機能します。
    • --format=esm は使用できますが、このようなポリフィルが必要です。
  • --packages=external を使用する場合は、--format を esm に設定します。

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 (およびその逆) への変換。
  • Node.js cjs/esm の相互運用性。

分析

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パッケージ

次の 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;
}
ログイン後にコピー

--format=cjs

次の引数を使用して 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=外部

--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
ログイン後にコピー

--format=esm

次の引数を使用して esbuild を実行します:

var npm_package_import = require("{npm-package}");
(async () => {
  const version = await (0, npm_package_import.getVersion)();
  console.log(version);
})();
ログイン後にコピー

ユーザーモジュールのrequire()

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
ログイン後にコピー

node:* モジュールの require()

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=外部

--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 サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート