- Java锁的逻辑(结合对象头和ObjectMonitor)
- 还在用饼状图?来瞧瞧这些炫酷的百分比可视化新图形(附代码实现)⛵
- 自动注册实体类到EntityFrameworkCore上下文,并适配ABP及ABPVNext
- 基于Sklearn机器学习代码实战
新项目用 umi4-max 搭建,部分功能想要使用其他项目的功能,不想重新开发,想到了使用 webpack5 的联邦模块 ,可以直接引用其他项目代码来实现共享代码.
理想很美好,现实很残酷。直接按照 webpack5 联邦模块的使用方法,并不能成功,而 官方文档 没有明确说明如何使用.
webpack 联邦模块如何使用呢?
理解:
说明:项目A需要用项目B的代码,项目A为导入项目,项目B为导出项目.
相关配置字段说明:
字段名 | 类型 | 含义 |
---|---|---|
name | string | 必传值,即输出的模块名,被远程引用时路径为 name/{name}/name/ |
library | string | 声明全局变量的方式,name 为 umd 的 name |
filename | string | 构建输出的文件名 |
remotes | object | 远程引用的应用名及其别名的映射,使用时以 key 值作为 name |
exposes | object | 被远程引用时可暴露的资源路径及其别名 |
shared | object | 与其他应用之间可以共享的第三方依赖,使你的代码中不用重复加载同一份依赖 |
配置要导出的功能模块 。
// 配置文件
const { ModuleFederationPlugin } = require("webpack").container;
const packageDeps = require('../package.json').dependencies
new ModuleFederationPlugin({
name: "app1",
filename: "remoteEntry.js",
// 表示导出的模块,只有在此申明的模块才可以作为远程依赖被使用。
exposes: {
"./CounterAppOne": "./src/components/CounterAppOne",
},
shared: {
...packageDeps,
react: { singleton: true, eager: true, requiredVersion: deps.react },
"react-dom": {
singleton: true,
eager: true,
requiredVersion: deps["react-dom"],
},
"react-router-dom": {
singleton: true,
eager: true,
requiredVersion: deps["react-router-dom"],
},
},
})
配置要导入的功能模块的文件地址 。
// 配置文件
const { ModuleFederationPlugin } = require("webpack").container;
const packageDeps = require('../package.json').dependencies
new ModuleFederationPlugin({
name: "container",
// 将其它项目的 name 映射到当前项目中
remotes: {
app1: 'app1@http://localhost:3001/remoteEntry.js',
},
// 是非常重要的参数,制定了这个参数,可以让远程加载的模块对应依赖改为使用本地项目的 React 或 ReactDOM。
shared: {
...packageDeps,
react: { singleton: true, eager: true, requiredVersion: deps.react },
"react-dom": {
singleton: true,
eager: true,
requiredVersion: deps["react-dom"],
},
"react-router-dom": {
singleton: true,
eager: true,
requiredVersion: deps["react-router-dom"],
},
},
})
react 项目中使用 。
// 通过 webpack 关联其它应用,然后按需加载
const CounterAppOne = React.lazy(() => import("app1/CounterAppOne"))
export default () => {
return (
<React.Suspense fallback={<div>Loading</div>}>
<CounterAppOne />
</React.Suspense>
)
}
配置 。
// .umirc.ts
publicPath:'http://127.0.0.1:5502/',
webpack5: {}, // 开启 webpack5
chainWebpack: (config) => {
config.output.publicPath('auto'); // 路径处理,保证导入项目路径正确
const { ModuleFederationPlugin } = require("webpack").container;
const packageDeps = require('./package.json').dependencies
config.plugin('mf').use(ModuleFederationPlugin, [{
name: "app1",
filename: 'remoteEntry.js',
exposes: {
"./Test": '@/pages/test.tsx',
},
shared: { react: { eager: true }, "react-dom": { eager: true } },
}])
return config;
}
安装插件: yarn install umi-plugin-mf-bootstrap 支持入口异步导入,以便支持使用 hooks。如果不安装,会报错 Uncaught Error: Shared module is not available for eager consumption 。具体原因为:违背了 hooks 的使用规则,不能用两个 React 实例.
插件内容:
import { IApi } from 'umi';
import { resolve } from 'path';
import { readFileSync } from 'fs';
export default (api: IApi) => {
api.onGenerateFiles(() => {
const buffer= readFileSync(resolve('./src/.umi/umi.ts'))
const c = String(buffer)
// console.log()
api.writeTmpFile({
path: 'index.ts',
content: c,
});
api.writeTmpFile({
path: 'umi.ts',
content: 'import("./index")',
});
});
};
配置 。
// .umirc.ts
dynamicImport:{},
webpack5: {}, // 开启 webpack5
chainWebpack: (config) => {
const { ModuleFederationPlugin } = require("webpack").container;
config.plugin('mf').use(ModuleFederationPlugin, [{
name: "app2",
remotes: {
"app1": "app1@http://127.0.0.1:5502/dist/remoteEntry.js",
},
shared: { react: { eager: true }, "react-dom": { eager: true } },
}])
return config;
}
使用和普通项目一致 。
按照 umi3 的方案,没有成功。多方查阅摸索后,最终通过查阅 官方 github 代码 ,看到有个插件中有个 mf 的文件,阅读代码后,摸索出最终的方案了.
导出项目配置和 umi3 的一致,而导入项目只需按照下面的配置即可,使用和普通项目一致.
// .umirc.ts
mf: {
name: 'app2',
remotes: [
{
name: 'app1',
entry: 'http://127.0.0.1:5502/dist/remoteEntry.js'
},
],
shared: { react: { eager: true }, "react-dom": { eager: true } },
}
关于 mf 插件的详细使用:可参考官方 github 代码 Module Federation 插件 ,后来找到的.
其他相关实现:
安装插件 vite-plugin-federation 。
配置 。
// vite.config.js 或 rollup.config.js
import federation from "@originjs/vite-plugin-federation";
export default {
plugins: [
federation({
name: "remote-app",
filename: "remoteEntry.js",
// 需要暴露的模块
exposes: {
"./Button": "./src/Button.vue",
},
shared: ["vue"],
}),
],
};
配置 。
// vite.config.js 或 rollup.config.js
import federation from "@originjs/vite-plugin-federation";
export default {
plugins: [
federation({
name: "host-app",
remotes: {
remote_app: "http://localhost:5001/assets/remoteEntry.js",
},
shared: ["vue"],
}),
],
};
react 项目中使用 。
// dynamic import
const myButton = React.lazy(() => import('remote/myButton'))
// static import
import myButton from 'remote/myButton'
备注:React 使用 federation 问题解决:
建议查看这个 Issue ,里面包含了大多数 React 相关的问题 。
常见问题:远程模块加载本地模块的共享依赖失败,报错
localhost/:1 Uncaught (in promise) TypeError: Failed to fetch dynamically imported module: http:your url
原因:Vite 在启动服务时对于 IP、Port 有自动获取逻辑,在 Plugin 中还没有找到完全对应的获取逻辑,在部分情况下可能会出现获取失败.
解决:
在本地模块显式到声明 IP、Port、cacheDir,保证我们的 Plugin 可以正确的获取和传递依赖的地址.
// 本地模块的 vite.config.ts
export default defineConfig({
server:{
https: "http",
host: "192.168.56.1",
port: 5100,
},
cacheDir: "node_modules/.cacheDir",
}
建议阅读:
参考:
最后此篇关于最新umi4-max如何使用webpack5联邦模块的文章就讲到这里了,如果你想了解更多关于最新umi4-max如何使用webpack5联邦模块的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
像这样的webpack.config.js文件可以导出多个配置: module.exports = [{entry: 'a.js'}, {entry: 'b.js'}]; 当我调用 webpack 时
我正在尝试在 webpack 配置文件中设置 browserslist,但不知道如何执行此操作。 在 webpack.config 中尝试了以下内容: 'use strict'; module.exp
If you are using webpack v5 or above you do not need to install this plugin. Webpack v5 comes with t
使用webpack 2时,为什么需要以相反的顺序为“use:”键添加加载程序?为什么不从头到尾,从左到右列出每个加载器?有什么理由吗? 最佳答案 看起来像是一种约定,它很容易成为匹配执行顺序和源顺序的
当我 web pack 的时候 --watch --config webpack.production.config.js --mode production 我有这个错误: ERROR in Typ
我有一个使用 Twig 进行模板的项目。其中的所有数据都是静态的,但为了清楚起见,我已经在其他 Twig 文件中分离出部分页面(否则一个文件中会有数百行标记)。 我使用 webpack 作为构建工具,
我使用 cli 创建了一个 vue.js 项目。我使用了 webpack 模板。我已经为此工作了几天,并且工作顺利。 现在我需要向项目添加一个 npm 包。这个包建议我对 webpack 配置进行一些
我正在使用运行“node_modules/.bin/webpack”,但我知道可以配置路径以便您只需键入“webpack ”。不过,我找不到方法。 :/ 最佳答案 如果你安装一个包 globally
我正在服务器渲染我的 react 应用程序,如下所示: export default ({ clientStats }: { clientStats: any }) => async (req: Re
我试过包含一个通配符,它破坏了构建;和多个 favicon字段条目,它只使用最后一个输入。我如何支持使用此插件包含多个网站图标文件? 最佳答案 您还需要包括 favicons-webpack-pl
我正在使用 webpack 编译我的 Reactjs 文件。在我的项目中,我需要对后端进行 API 调用。 现在我有 3 个环境,分别是本地环境、开发环境和生产环境。 所以我有一个constants.
我正在将所有文件构建到“dist”文件夹中。 Dist ->index.html ->bundle.js 我已将配置设置为在我需要的特定端口上运行。 { entry: './src/ind
我想使用由 Closure Compiler 使用 Webpack 生成的 SourceMap,但我不知道该怎么做。 这是我的 webpack 配置: const ClosureCompiler =
有没有办法接收当前文件路径,就像在 requirejs 中一样? define(['module'], function (module) { console.log(module.uri)
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 4年前关闭。 Improve this questi
我是 webpack 的初学者用户。我想写一个webpack.config.js建立我的项目。但是有什么不对的地方! 这是我的 package.json (已安装所有依赖项): { "name":
我从这里开始:https://github.com/vuejs/vue-cli 我不确定它是否使用 Webpack。 包含/使用 webpack 的项目将包含哪些文件? 最佳答案 如果您的项目正在使用
Webpack,你将要了我的命。 html-webpack-plugin 在生产中运行良好。 'dist' 文件夹加载了我的 html 模板和插入的包。好酷。 但是,webpack-dev-serve
想象一下我有一个这样的项目: /moduleA/src... /moduleB/src... /mainApp/src... 每个模块和主应用程序都有一个单独的 webpack.config。模块是库
根据 webpack 文档,我尝试将 UglifyJSPlugin 添加到 webpack 4 项目中,但我仍然在我的包中看到死代码甚至注释,这让我认为我的 uglify 插件配置没有被使用。 Lin
我是一名优秀的程序员,十分优秀!