Skip to content

juandgarin/react-micro-frontend-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-micro-frontend-example

Example of using React in host-remote micro-frontend pattern with Webpack Module Federation

How to use

Run the following commands in the root directory.

yarn
yarn start

Navigate to:

  • http://localhost:3000 for the host app
  • http://localhost:4000 for the remote app

Host App

Pulls <App/> and <Button /> from the remote app and renders them. Example:

const RemoteApp = React.lazy(() => import("Remote/App"));

Remote App

Exposes the modules in a moduleEntry.js file at http://localhost:4000/moduleEntry.js

name: 'Remote'

Exposes:

  • <App />
  • <Button />

Notes

To make this a peer-to-peer pattern you could also expose modules from the Host app and render them in Remote by modifying the host app's webpack config to also expose components and output a moduleEntry.js file.

About

Simple example of using React in a micro-frontend architecture with Webpack Module Federation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 71.1%
  • HTML 28.9%