Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 525 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 525 Bytes

microfrontends

Repository with some experiments and POCs of microfrontend architectures.

Goals

"Micro-frontends" that...

  • are dynamically linked at run-time (so that when the sub-apps update the "container" app doesn't need to be rebuilt)
  • know about each other's location via environment variables
  • work independently
  • share dependencies (so that common libraries are only sent once)
  • can be mounted in different routes

There's a version using vanilla JS and a version with React.