Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Follow publication

How to Share and Reuse Micro Frontends

Fernando Doglio
Bits and Pieces
Published in
11 min readJul 12, 2023

The tool we’ll be using for this

Reusing existing micro frontends

npx @teambit/bvm install
npm config set '@deleteman:registry' https://node.bit.cloud

Building our website with micro frontends

your-project-folder> bit new react workspace --env teambit.react/react-env --default-scope fdoglio.test-website
bit create react-app apps/website --aspect teambit.react/react-env
bit use apps/website
import './App.css';

export function Web() {
return (
<div className="App">
<header className="App-header">
<p>
Welcome to our website!
</p>
<p>
Please visit our <a href="/docs">docs</a> to learn more about our product.
Or just check out our <a href="/blog">technical blog.</a>
</p>

</header>
</div>
);
}
<your-project-folder> bit import fdoglio.microfrontends/fake-blog
bit import deleteman.microfrontends/docs
import React, { useState } from 'react';
import {FakeBlog} from '@fdoglio/microfrontends.fake-blog'
import './App.css';

export function Website() {
const [page, setPage] = useState("home")

function navTo(event, target) {
event.preventDefault()
setPage(target)
return false;
}
if(page == "home") {
return (
<div className="App">
<header className="App-header">
<p>
Welcome to our website!
</p>
<p>
Please visit our <a href="#" className='inline' onClick={(evt) => navTo(evt,'docs') }>docs</a> to learn more about our product.
Or just check out our <a href="#" className='inline' onClick={(evt) => navTo(evt, 'blog')}>technical blog.</a>
</p>

</header>
</div>
);
}
if(page == "blog") {
return (
<>
<FakeBlog />
<p>
Go back <a href="#" className='inline' onClick={(evnt) => navTo(evnt, 'home')}>Home</a>
</p>
</>
)
}

}
import {Docs} from "@deleteman/microfrontends.docs"

if(page == "docs") {
return (
<>
<Docs />
<p>
Go back <a href="#" className='inline' onClick={(evnt) => navTo(evnt, 'home')}>Home</a>
</p>
</>
)
}

Pushing the final product up to Bit

bit tag
bit export

Also, learn about creating and adding micro frontends to your existing applications:

Build Microfrontends with reusable components

→ Micro-Frontends: Video // Guide

→ Code Sharing: Video // Guide

→ Modernization: Video // Guide

→ Monorepo: Video // Guide

→ Microservices: Video // Guide

→ Design System: Video // Guide

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

I write about technology, freelancing and more. Check out my FREE newsletter if you’re into Software Development: https://fernandodoglio.substack.com/

No responses yet

Write a response