├── .github └── workflows │ └── medium-post-workflow.yml ├── .gitignore ├── LICENSE ├── README.md └── assets ├── four-micro-frontend-anti-patterns.jpeg ├── mf-history.png ├── micro-frontend-history.png ├── micro-frontends-application-shell.jpg └── v1-microfrontend-mandmap.png /.github/workflows/medium-post-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/.github/workflows/medium-post-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/README.md -------------------------------------------------------------------------------- /assets/four-micro-frontend-anti-patterns.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/assets/four-micro-frontend-anti-patterns.jpeg -------------------------------------------------------------------------------- /assets/mf-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/assets/mf-history.png -------------------------------------------------------------------------------- /assets/micro-frontend-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/assets/micro-frontend-history.png -------------------------------------------------------------------------------- /assets/micro-frontends-application-shell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/assets/micro-frontends-application-shell.jpg -------------------------------------------------------------------------------- /assets/v1-microfrontend-mandmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshshinde2012/micro-frontends-mindmaps/HEAD/assets/v1-microfrontend-mandmap.png --------------------------------------------------------------------------------