您现在的位置是:亿华云 > 数据库

5个步骤将随机React应用程序转换为微前端

亿华云2025-10-03 06:35:24【数据库】9人已围观

简介什么是微型前端方法?微前端术语首先在2016年11月的思想技术雷达中提出来。它将微服务的概念扩展到前端开发。该方法是通过分解应用功能来将基于浏览器的代码拆分为微前端。通过制作较小且特征为中心的Code

什么是个步微型前端方法?微前端术语首先在2016年11月的思想技术雷达中提出来。它将微服务的随机概念扩展到前端开发。

该方法是应用程通过分解应用功能来将基于浏览器的代码拆分为微前端。通过制作较小且特征为中心的序转CodeBases,我们实现了解耦的微前软件开发目标。

虽然Codebases已经解耦,个步但用户体验是随机连贯的。此外,应用程每个代码库都可以独立实现,序转升级,微前更新和部署。个步

这是随机微前端的天堂。无论框架和版本如何,应用程javascript应用程序都由容器启动。序转这些应用程序,微前遗留和新的,无缝地一起工作,并类似于一个应用程序。

在我们的示例中,我们将解决更简单的React微型前端的香港云服务器情况。

在建立发起React应用程序的微型前端容器的前程工作

此容器需要具有启动随机反应应用程序的能力,而不知道许多细节。此外,由于微前端的概念,这层需要很薄,商业逻辑很少。

幸运的是,Cam Jackson公布了他的微观前端工作,让我们采用。他的工作在这个地点可以获得:

容器:微前端演示的入口点和容器应用。 用于浏览餐馆的微型前端:浏览。 从餐厅订购食物的微型前端:餐厅订购。 内容服务器:将静态内容存储微前端演示的位置。

这是微型前端工作的工作流程:

启动内容服务器。 在特定端口启动浏览和餐厅订购应用程序。 基于URL,容器将路线到其中一个微型前端。 所选的源码库Micro前端转到特定端口以获取应用程序的资产清单.JSON。从此JSON文件中,包含的main.js置于脚本标记并加载。

清单文件包含对其相应的输出文件的所有资产文件名的映射,以便在不必解析index.html的情况下可以选择它。该容器的核心是以下Microfrontend.js:

import React from react; class MicroFrontend extends React.Component {    componentDidMount() {      const {  name, host, document } = this.props;     const scriptId = `micro-frontend-script-${ name}`;     if (document.getElementById(scriptId)) {        this.renderMicroFrontend();       return;     }     fetch(`${ host}/asset-manifest.json`)       .then(res => res.json())       .then(manifest => {          const script = document.createElement(script);         script.id = scriptId;         script.crossOrigin = ;         script.src = `${ host}${ manifest[main.js]}`;         script.onload = this.renderMicroFrontend;         document.head.appendChild(script);       });   }   componentWillUnmount() {      const {  name, window } = this.props;     window[`unmount${ name}`](`${ name}-container`);   }   renderMicroFrontend = () => {      const {  name, window, history } = this.props;     window[`render${ name}`](`${ name}-container`, history);   };   render() {      return <main id={ `${ this.props.name}-container`} />;   } } MicroFrontend.defaultProps = {    document,   window, }; export default MicroFrontend; 

第13到22行包含要启动微型前端的代码。通常,微前端之间没有通信,并且容器与微前端之间的通信有限。

通常,它是从容器到微前端的一种方式。在这里,第34行通过ContainerID和历史,因为它的微前端待呈现如下:

ReactDOM.render(<App history={ history} />,      document.getElementById(containerId)); 

第18行将脚本的Crondorigin值设置为空,这相当于匿名。这意味着元素的请求将使其模式设置为CORS及其凭据模式设置为相同原点。

我们在实际代码中修改了Came的示例。亿华云无论如何,这是我们使用的基础。基于此,我们可以向您展示如何将应用程序转换为微前端。

5个步骤将随机反应应用程序转换为微前端

我们为随机反应应用程序的选择是创建React应用程序。将其变成微前端需要五个步骤。

关于Facebook的皇冠珠宝应用程序的许多原则都在创建React应用程序的10个有趣的事实中描述。在本文中,我们强调应用这些原则。

第1步:修改package.json以设置端口并使用“React-App-Rewifire”

{    "name": "my-app",   "version": "0.1.0",   "private": true,   "dependencies": {      "@testing-library/jest-dom": "^4.2.4",     "@testing-library/react": "^9.4.0",     "@testing-library/user-event": "^7.2.1",     "react": "^16.12.0",     "react-dom": "^16.12.0",     "react-scripts": "3.4.0",     "react-app-rewired": "2.1.5"   },   "scripts": {      "start": "PORT=4000 react-app-rewired start",     "build": "react-app-rewired build",     "test": "react-app-rewired test",     "eject": "react-scripts eject"   },   "eslintConfig": {      "extends": "react-app"   },   "browserslist": {      "production": [       ">0.2%",       "not dead",       "not op_mini all"     ],     "development": [       "last 1 chrome version",       "last 1 firefox version",       "last 1 safari version"     ]   } }  在第12行中,添加react-app-rewired作为依赖项,这允许在不弹出它的情况下自定义应用程序。 在第15行中,应用程序的启动端口已从默认端口3000更改为所选的4000 - 这避免了由于容器本身在端口3000上运行以来端口冲突。 从15号线到第17行,反应脚本由Reft-App-Rewifired替换。

使用新端口,创建React应用程序显示UI如下所示。(我们欺骗了一点。使用React-App-Rewired需要在应用程序运行之前更改步骤2。)

步骤2:使用config-overrides.js禁用代码拆分

默认情况下,启用代码拆分。应用程序分为多个可以独立加载到页面上的块。

http:// localhost:4000 / asset-manifest.json 显然显示该应用程序已被捆绑。

此加载优化会导致挂载和卸载Micro Front-Ender的问题。我们需要通过创建或编辑config-overrides.js来禁用块,如下所示:

module.exports = {    webpack: (config, env) => {      config.optimization.runtimeChunk = false;     config.optimization.splitChunks = {        cacheGroups: {          default: false,       },     };     return config;   }, }; 

之后,http:// localhost:4000 / asset-manifest.json显示没有块。

如果未从Create React应用程序生成React应用程序,则可以通过修改WebPack配置来完成步骤1和步骤2。

如果使用我们的改进的MicroFrontend.js,则不必在步骤1中使用React-App-Rewifirew,并且可以完全跳过步骤2。5步减少到3.5。详细信息描述于“您不必对微前端丢失优化”中。

此保存在此回购的ChunkOptimization分支中捕获。

第3步:在SRC / index.js中进行更改以定义渲染和卸载功能

让我们来看看浏览Micro前端的SRC / index.js:

import react-app-polyfill/ie11; import React from react; import ReactDOM from react-dom; import App from ./App; import {  unregister } from ./registerServiceWorker; window.renderBrowse = (containerId, history) => {    ReactDOM.render(     <App history={ history} />,     document.getElementById(containerId),   );   unregister(); }; window.unmountBrowse = containerId => {    ReactDOM.unmountComponentAtNode(document.getElementById(containerId)); }; 

window.RenderBrowse和window.unmountBrowse定义。这些方法由容器的Microfrontend.js调用。需要为Create React应用程序的SRC / index.js 定义类似的方法。

import React from react; import ReactDOM from react-dom; import ./index.css; import App from ./App; import * as serviceWorker from ./serviceWorker; // render micro frontend function window.renderCreatereactapp = (containerId, history) => {    ReactDOM.render(     <App history={ history}/>,     document.getElementById(containerId)   );   serviceWorker.unregister(); }; // unmount micro frontend function window.unmountCreatereactapp = containerId => {    ReactDOM.unmountComponentAtNode(document.getElementById(containerId)); }; // Mount to root if it is not a micro frontend if (!document.getElementById(Createreactapp-container)) {    ReactDOM.render(<App />, document.getElementById(root)); } // If you want your app to work offline and load faster, you can change // unregister() to register() below. Note this comes with some pitfalls. // Learn more about service workers: https://bit.ly/CRA-PWA serviceWorker.unregister(); 

从第7行到第19行,窗口.RenderCreateActApp和Window.unmountCreaterActApp正在添加。

第23线变为条件。如果它是一个独立的应用程序,它将被呈现为根元素。如果它是一个微型前端,它将通过window.rendercreateActapp呈现给ContainID。

第4步:使用src / setupproxy.js设置CORS规则

在Web浏览器中启动Micro前端时,我们获得了CORS错误:

Access to fetch at ‘http://localhost:4000/asset-manifest.json from origin ‘http://localhost:3000 has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. If an opaque response serves your needs, set the request’s mode to ‘no-cors’ to fetch the resource with CORS disabled. 

必须通过创建或编辑src / setupproxy.js来设置以下代理。

module.exports = app => {    app.use((req, res, next) => {      res.header(Access-Control-Allow-Origin, *);     next();   }); }; 

在进行第5步之前,我们为容器做了一些额外的工作。

在.env文件中,需要添加新的Host

React_App_CreateActApp_Host。端口4000需要匹配创建React App正在运行的Real Port。

REACT_APP_BROWSE_HOST=http://localhost:3001 REACT_APP_RESTAURANT_HOST=http://localhost:3002 REACT_APP_CREATEREACTAPP_HOST=http://localhost:4000 REACT_APP_CONTENT_HOST=http://localhost:5000 

需要对.env.生产需要做类似的变化:

REACT_APP_BROWSE_HOST=https://browse.demo.microfrontends.com REACT_APP_RESTAURANT_HOST=https://order.demo.microfrontends.com REACT_APP_CREATEREACTAPP_HOST=https://createreactapp.demo.microfrontends.com REACT_APP_CONTENT_HOST=https://content.demo.microfrontends.com 

在App Header.is中添加导航链接,以使UI可访问。这是可选的。

import React from react; import {  NavLink } from react-router-dom; import ./AppHeader.css; const AppHeader = () => (   <header>     <div className="center-column">       <h1> Feed me</h1>     </div>     <nav>       <ol className="center-column">         <li>           <NavLink to="/">Browse restaurants</NavLink>         </li>         <li>           <NavLink to="/random">Surprise me</NavLink>         </li>         <li>           <NavLink to="/createreactapp">Create React App</NavLink>         </li>         <li>           <NavLink to="/about">About</NavLink>         </li>       </ol>     </nav>   </header> ); export default AppHeader; 

将CreateAteActApp及其路由添加到Container的App.js中:

import React from react; import {  BrowserRouter, Switch, Route, Redirect } from react-router-dom; import AppHeader from ./AppHeader; import MicroFrontend from ./MicroFrontend; import About from ./About; const {    REACT_APP_BROWSE_HOST: browseHost,   REACT_APP_RESTAURANT_HOST: restaurantHost,   REACT_APP_CREATEREACTAPP_HOST: createreactappHost, } = process.env; let numRestaurants = 0; fetch(`${ process.env.REACT_APP_CONTENT_HOST}/restaurants.json`)   .then(res => res.json())   .then(restaurants => {      numRestaurants = restaurants.length;   }); const getRandomRestaurantId = () =>   Math.floor(Math.random() * numRestaurants) + 1; const Browse = ({  history }) => (   <MicroFrontend history={ history} host={ browseHost} name="Browse" /> ); const Restaurant = ({  history }) => (   <MicroFrontend history={ history} host={ restaurantHost} name="Restaurant" /> ); const Createreactapp = ({  history }) => (   <MicroFrontend history={ history} host={ createreactappHost} name="Createreactapp" /> ); const Random = () => <Redirect to={ `/restaurant/${ getRandomRestaurantId()}`} />; const App = () => (   <BrowserRouter>     <React.Fragment>       <AppHeader />       <Switch>         <Route exact path="/" component={ Browse} />         <Route exact path="/restaurant/:id" component={ Restaurant} />         <Route exact path="/createreactapp" component={ Createreactapp} />         <Route exact path="/random" render={ Random} />         <Route exact path="/about" render={ About} />       </Switch>     </React.Fragment>   </BrowserRouter> ); export default App; 

现在让我们试着展示我们的微型前端。

内容服务器:NPM启动。 浏览Micro前端:NPM开始。 餐厅订购微型前端:NPM开始。 Create React App Micro前端:NPM开始。 容器:NPM开始。

转到localhost:3000 / createActapp来启动页面。

哎呀,React spinning 日志在哪里?

让我们重新审视http:// localhost:4000 / asset-manifest.json。Micro前端的徽标是一个单独的文件:

{    "files": {      "main.js": "/static/js/bundle.js",     "main.js.map": "/static/js/bundle.js.map",     "index.html": "/index.html",     "static/media/logo.svg": "/static/media/logo.5d5d9eef.svg"   },   "entrypoints": [     "static/js/bundle.js"   ] } 

我们忘了抓住它!

查看此徽标SVG文件的来源,该文件被设置为/static/media/logo.5d5d9eef.svg。此文件可在Create React App(HTTPS:// localhost:4000)中使用,但不在容器中(http:// localhost:3000)。

这是我们的最后一步。

步骤5:在.env文件中配置内容主机并将其用来前缀静态内容

创建或编辑.env以设置内容主机:

REACT_APP_CONTENT_HOST=http://localhost:4000 

当Micro前端使用静态内容时,它需要在HTML中的%React_App_Content_host%前缀,并在JavaScript中的

Process.env.reacect_app_content_host。

在这里,我们在src / app.js中更改了第9行:

import React from react; import logo from ./logo.svg; import ./App.css; function App() {    return (     <div className="App">       <header className="App-header">         <img src={ `${ process.env.REACT_APP_CONTENT_HOST}${ logo}`} className="App-logo" alt="logo" />         <p>           Edit <code>src/App.js</code> and save to reload.         </p>         <a           className="App-link"           href="https://reactjs.org"           target="_blank"           rel="noopener noreferrer"         >           Learn React         </a>       </header>     </div>   ); } export default App; 

使用此更改,徽标SVG文件以http:// localhost:4000前缀。

该应用程序现在正常工作。

原文链接:

https://betterprogramming.pub/5-steps-to-turn-a-random-react-application-into-a-micro-frontend-946718c147e7

很赞哦!(2)