Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 651 Bytes

File metadata and controls

33 lines (29 loc) · 651 Bytes

react-micro-frontend-setup

This is a simple example of MicroFrontend with ReactJs, Which will help to understand about micro frontend architecture.

Installation

Install the dependencies and devDependencies and start the server.

Step 1

Footer component will serve from here.

cd react-micro-frontend-setup
cd footer-mf
npm install
npm run start:live

Step 2

Header component will serve from here.

cd react-micro-frontend-setup
cd header-mf
npm install
npm run start:live

Step 3

Main app will use other components

cd react-micro-frontend-setup
cd mainApp
npm install
npm run start:live

Thank you :)