目前,Angular MFE(Micro Frontend)还没有正式发布。不过,可以通过使用 Angular 的远程模板和路由来模拟 MFE 的功能。
首先,使用 Angular CLI 创建一个新的 Angular 14 应用程序:
ng new mfe-14-app
接下来,在该应用程序中创建一个简单的组件:
@Component({
selector: 'app-mfe14',
template: 'Angular 14 MFE Module
'
})
export class Mfe14Component {}
现在,需要在应用程序中启用远程模板。在mfe-14-app
的根目录中创建一个新的webpack.config.js
文件并将以下代码添加到其中:
const ModuleFederationPlugin = require('webpack/lib/container/ModuleFederationPlugin');
module.exports = {
output: {
publicPath: 'http://localhost:4201/',
// 将将远程模块输出到全局变量中
library: 'mfe14App',
libraryTarget: 'window',
},
// 启用远程模板
externals: {
'@angular/core': 'ng.core',
'@angular/common': 'ng.common',
'@angular/router': 'ng.router',
},
plugins: [
new ModuleFederationPlugin({
// 标识此模块
name: 'mfe14',
// 公开组件
exposes: {
'./Mfe14Component': './src/app/mfe14/mfe14.component',
},
// 使用远程模板
remotes: {
// 这将从 shell 应用程序获取所有 Angular 模块
'shellApp': 'shellApp@http://localhost:4200/remoteEntry.js'
},
shared: [
'@angular/core',
'@angular/common',
'@angular/router'
]
})
]
};
要确保在 Angular 应用程序的配置中禁用自带的