Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Microfrontends

 Microfrontends

snowcamp.io (Grenoble, France)

event: http://snowcamp.io/

SQUER Solutions

January 24, 2019
Tweet

More Decks by SQUER Solutions

Other Decks in Technology

Transcript

  1. @duffleit micro frontends a strive for fully verticalized systems _

    @duffleit Grenoble, snowcamp.io photo by Komail Naqvi
  2. @duffleit David Leitner ▪ Technical Expert at Senacor Technologies ▪

    Lecturer for post diploma courses at UAS Technikum Vienna ▪ I do a couple of things around the tech- community I‘m writing code
  3. @duffleit A definition of micro frontends The idea of micro

    frontends is to extend the concepts of micro services to the frontend world.
  4. @duffleit Sam Newman: ▪ small and focused on one thing

    ▪ … to be autonomous ▪ That‘s it WHY we do them? Microservices * UBERHDTV - https://imgur.com/gallery/nup4lfX CVDD HDD/EDD *
  5. @duffleit why autonomous? ✅Independent deployments ✅Small interface surface ✅Technology agnostic

    ✅Based on standards ✅Autonomous operations ✅Parallel Development
  6. @duffleit DB DB DB DB DB DB DB DB DB

    Independent deployments Autonomous operations Technology agnostic Based on standards Parallel Development Small interface surface
  7. @duffleit The frontend is … not an implementation detail, it

    is a critical part of a microservice architecture.
  8. @duffleit frontend platform backend platform Independent deployments Autonomous operations Technology

    agnostic Based on standards Parallel Development Small interface surface a frontend monolith was born a micro frontend TO THE RESCUE Independent deployments Autonomous operations Technology agnostic Based on standards Parallel Development Small interface surface
  9. @duffleit Flavour #1: Backend for Frontend frontend platform backend platform

    Products Ordering Payment Shipping Dash board BFF BFF BFF BFF BFF samnewman.io/patterns/architectural/bff/
  10. @duffleit What customers expect: 1 Company == 1 Website I

    don‘t want to maintain this UI/UX anymore. 1 Company === 1 Website
  11. @duffleit Flavour #1: Reusage Problem frontend platform backend platform Catalogue

    Ordering Payment Shipping hyperlink hyperlink hyperlink Navigation Navigation Navigation
  12. @duffleit Flavour #1: Hyperlink Integration Independent deployments Autonomous operations Technology

    agnostic Parallel Development A consistent UI/UX Smooth user interaction Fast loading
  13. @duffleit MonoRepo Simplifies dependency management. Allows extensive code sharing and

    reuse. package.json Shared resources (assets, components…) repository
  14. @duffleit Flavour #2: Build Time Integration Independent deployments Autonomous operations

    Technology agnostic Parallel Development A consistent UI/UX Smooth user interaction Fast loading* BUNDLED FRONTED UI-Shared-Stuff (e.g. SPA-Framework, Components)
  15. @duffleit Flavour #3: Server Side Includes or Edge Side Includes

    <html> <body> <!--#include virtual="/products" --> <!--#include virtual="/payments" --> <!--#include virtual="/dashboard" --> <!--#include virtual="/shipping" --> </body> </html>
  16. @duffleit Flavour #3: Transclusion Independent deployments Autonomous operations Technology agnostic

    Parallel Development A consistent UI/UX Smooth user interaction Fast loading BUNDLED FRONTED UI-Shared-Stuff (e.g. SPA-Framework, Components)
  17. @duffleit Flavour #4: App Shell Integration Independent deployments Autonomous operations

    Technology agnostic Parallel Development A consistent UI/UX Smooth user interaction Fast loading APP SHELL Header Footer
  18. @duffleit /catalogue /checkout APP SHELL Header Footer A matter of

    modularisation Hyperlink Integration App Shell Integration Metaframework
  19. @duffleit • they are implemented with iframes. • or start

    using web components now. Flavour #5: Technology agnostic
  20. @duffleit Flavour #5: Metaframework Metaframework /catalogue /checkout Independent deployments Autonomous

    operations Technology agnostic Parallel Development A consistent UI/UX Smooth user interaction Fast loading
  21. @duffleit „a consistent UI“ 1) CDN – for static files

    2) CMS – for static content 3) A Component Library
  22. @duffleit „a component library“ SPA-C SPA-B SPA-A component library Time

    Effort 2019 2020 2021 component library component library a promise that you will save time in the future by reusage. you introduce a dependency between your projects. copy & own
  23. @duffleit „a component library“ If you really need a component

    library, then build it technology agnostic instead for one framework (version).
  24. @duffleit Flavour #5: Metaframework Metaframework /catalogue /checkout Independent deployments Autonomous

    operations Technology agnostic Parallel Development A consistent UI/UX Smooth user interaction Fast loading
  25. @duffleit A general decision advice Your application is big?* The

    need for smooth user interaction Build Time Integration Hyperlink Integration Strongly Independent UI/Domain Parts Complex modularisation needed Transclusion App Shell Integration Meta- Framework * an application is big enough to justify using micro frontends, if slight UI/UX differences between the two most unrelated subpages are acceptable. Yes No
  26. @duffleit Compose your perfect MIX Landing Shop Ordering hyperlink hyperlink

    APP SHELL Header Footer <!–- SSIs --> <!--#include … --> <!--#include … -->
  27. @duffleit Key-Takeaways „Think twice if a frontend monolith does not

    fit your needs and start with a monolith first approach.“
  28. @duffleit Key-Takeaways „Consider the frontend as part of your microservice

    architecture – and solve UI specific problems with UI specific solutions.“
  29. @duffleit Key-Takeaways „Minimize the shared dependencies and design for replacement

    not for reuse.” >> A little copying is better than a little dependency. Rob Pike