We have 3 separate development teams, each responsible for a different module of a large monolithic React application. We’re now migrating to a microfrontend architecture, where each module is exposed as a separate standalone application, consumed by a host application that we don’t control.
Important context:
The host app is completely separate — it’s not part of our codebase.
Previously, all modules shared a single Redux store with reducers like: ui, settings, translations, user.
After splitting the app into microfrontends, each module now independently fetches settings, user, etc., causing duplicated network requests and inconsistent state.
Question:
What’s the best way to share state (or data) between microfrontends, given that:
Only one of them may initially load the data
Others should be able to access the data if it’s already loaded
We considered exporting the store outside and having all microfrontends subscribe to it, but then the shared store might initialize too early, even when no frontend is mounted, and make requests preemptively.
Any best practices or patterns for this setup?
We’re open to solutions like shared singleton stores, global event buses, custom loaders, etc.
Appreciate any input or real-world experience!