13

我正在研究 Webpack 5 模块联合功能,但在理解为什么我的代码不起作用时遇到了一些麻烦。这个想法与标准模块联合示例所做的非常相似:

app1- 是主机应用程序 app2- 是一个远程暴露整个应用程序app1

app1呈现标题和水平线,app2应在其下方呈现)

app1和都app2声明reactreact-dom作为它们共享的、单例的、急切的依赖关系weback.config.js

// app1 webpack.config.js
module.exports = {
  entry: path.resolve(SRC_DIR, './index.js');,
  ...
  plugins: [
    new ModuleFederationPlugin({
      name: "app1",
      remotes: {
        app2: `app2@//localhost:2002/remoteEntry.js`,
      },
      shared: { react: { singleton: true, eager: true }, "react-dom": { singleton: true, eager: true } },
    }),
    ...
  ],
};
// app2 webpack.config.js
module.exports = {
  entry: path.resolve(SRC_DIR, './index.js');,
  ...
  plugins: [
    new ModuleFederationPlugin({
      name: "app2",
      library: { type: "var", name: "app2" },
      filename: "remoteEntry.js",
      exposes: {
        "./App": "./src/App",
      },
      shared: { react: { singleton: true, eager: true }, "react-dom": { singleton: true, eager: true } },
    }),
    ...
  ],
};

在 App1 index.js 我有下一个代码:

import React from "react";
import ReactDOM from "react-dom";
import App from "./App";


ReactDOM.render(<App />, document.getElementById("root"));

接下来是 App1App.js组件:

import React, { Suspense } from 'react';

const RemoteApp2 = React.lazy(() => import("app2/App"));

export default function App() {
  return (
    <div>
      <h1>App 1</h1>
      <p>Below will be some content</p>
      <hr/>
      <Suspense fallback={'Loading App 2'}>
        <RemoteApp2 />
      </Suspense>
    </div>
  );
}

但是当我启动应用程序时,我得到下一个错误:

Uncaught Error: Shared module is not available for eager consumption: webpack/sharing/consume/default/react/react?1bb3
    at Object.__webpack_modules__.<computed> (consumes:133)
    at __webpack_require__ (bootstrap:21)
    at fn (hot module replacement:61)
    at Module../src/index.js (main.bundle.a8d89941f5dd9a37d429.js:239)
    at __webpack_require__ (bootstrap:21)
    at startup:4
    at startup:6

如果我从index.jstobootstrap.js和 in 中提取所有index.js内容

import('./bootstrap');

一切正常。

这让我感到困惑,因为创建者的官方文档博客文章指出,您可以采取任何一种bootstrap.js方式,也可以将依赖项声明为急切的依赖项。

将不胜感激任何关于为什么它在没有bootstrap.js模式的情况下无法工作的帮助/见解。

这是我正在构建的完整 GitHub 沙箱的链接:https ://github.com/vovkvlad/webpack-module-federation-sandbox/tree/master/simple

4

4 回答 4

12

只是为了让那些可能错过对最初答案的评论的人清楚:

最初失败的主要原因似乎是该remoteEntry.js文件是在实际运行主机应用程序的代码之后加载的。

bootstrap.js方法和将直接脚本添加<script src="http://localhost:2002/remoteEntry.js"></script>到标签都<head></head>具有完全相同的结果 - 它们在主应用程序代码之前remoteEntry.js被加载和解析。

在引导的情况下,顺序是下一个:

  1. main_bundle已加载
  2. 由于主要代码被提取到bootstrap.js文件中 -remoteEntry.js被加载
  3. bootstrap.js已加载实际运行主应用程序

在此处输入图像描述

由 Oleg Vodolazsky 提议的变体事件顺序是下一个:

  1. remoteEntry.js首先加载,因为它直接添加到html文件中,并且 webpackmain_bundle被附加到<head></head>remoteEntry 链接之后
  2. main_bundle已加载并运行应用程序

在此处输入图像描述

如果只是尝试在没有引导程序且没有硬编码脚本的情况下运行应用程序,<head></head> main_bundle并且remoteEntry.jsmain_bundle尝试实际运行应用程序时,它会失败并出现错误:

在此处输入图像描述

于 2021-03-15T13:28:29.917 回答
6

为了使其工作,您需要更改加载远程条目的方式。

  1. 将app1 中的ModuleFederationPlugin配置更新为:webpack.config.js
...

new ModuleFederationPlugin({
    name: "app1",
    remoteType: 'var',
    remotes: {
      app2: 'app2',
    },
    shared: {
      ...packageJsonDeps,
      react: { singleton: true, eager: true, requiredVersion: packageJsonDeps.react },
      "react-dom": { singleton: true, eager: true, requiredVersion: packageJsonDeps["react-dom"] }
    },
}),

...
  1. script标签添加到head您的index.htmlin app1 :
<script src="http://localhost:2002/remoteEntry.js"></script>

进一步的黑客攻击看起来不错!

更新:

只是为了它:我已经为您的沙盒存储库创建了一个 PR,其中包含上述修复: https ://github.com/vovkvlad/webpack-module-fedaration-sandbox/pull/2

于 2021-03-15T00:18:24.763 回答
3

您可以在 Module Federation 的高级 API 中将依赖项设置为 eager,它不会将模块放在异步块中,而是同步提供它们。这允许我们在初始块中使用这些共享模块。但要小心,因为所有提供的和后备模块将始终被下载。建议仅在应用程序的某一点提供它,例如 shell。

Webpack 的网站强烈推荐使用异步边界。它将拆分出更大块的初始化代码,以避免任何额外的往返并总体上提高性能。

例如,您的条目如下所示:

index.js

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(<App />, document.getElementById('root'));

让我们创建 bootstrap.js 文件并将条目的内容移动到其中,然后将该引导程序导入到条目中:

index.js

+ import('./bootstrap');
- import React from 'react';
- import ReactDOM from 'react-dom';
- import App from './App';
- ReactDOM.render(<App />, document.getElementById('root'));

引导程序.js

+ import React from 'react';
+ import ReactDOM from 'react-dom';
+ import App from './App';
+ ReactDOM.render(<App />, document.getElementById('root'));

此方法有效,但可能有局限性或缺点。

通过 ModuleFederationPlugin 为依赖设置 eager: true

webpack.config.js

// ...
new ModuleFederationPlugin({
  shared: {
    ...deps,
    react: {
      eager: true,
    },
  },
});

资源

于 2021-08-29T08:02:50.640 回答
0

在将 NextJS 应用程序用作容器应用程序时,我也遇到了问题。你知道,我们不得不一次又一次地给急切的加载。

我采用了与网络上当前技术不同的方式。我为我的远程库使用了动态加载技术,现在似乎没有一次又一次地获取共享模块。它们只被加载一次。此外,我将整个系统实现为与框架无关,因此您可以将任何框架用作远程应用程序(angular、vue、react、svelte...)。此外,我将 SSR 逻辑移至远程应用程序部分,因此现在它也可以完全支持任何框架的 SSR。它似乎有效,我想在这里分享我的解决方案以帮助社区。我写了一篇带有示例 Github repo 链接的中型博客文章。我详细地讲述了我的方法。

你可以在这里找到详细的帖子:https ://medium.com/@metinarslanturkk/how-i-implemented-dynamic-loaded-framework-agnostic-microfrontend-app-with-nextjs-and-react-which-620ff3df4298

这是示例回购链接:https ://github.com/MetinArslanturk/microfrontend-nextjs-ssr

谢谢, 梅廷

于 2022-01-22T09:29:59.387 回答