The Microfrontend Communication Problem: Why We Built an Event Bus
Microfrontends are great until they need to talk to each other. How do you pass data between two React apps that don't share a state tree? Redux? Context? No. We went back to basics and built a vanilla JavaScript Pub/Sub Event Bus. Here's why it works.