@ManfredSteyer
About me…
Manfred Steyer, ANGULARarchitects.io
(Remote) Angular Workshops
and Consulting
Google Developer Expert
for Angular
Trusted Collaborator
in the Angular Team
Manfred Steyer
Slide 10
Slide 10 text
@ManfredSteyer
How to implement
Microfrontends? ?
Slide 11
Slide 11 text
@ManfredSteyer
Several Options
• Hyperlink-Integration
• Loading Web Components into your index.html
• Loading separate SPAs into your index.html
• Loading separately compiled Angular Modules
• Webpack 5 Module Federation
Slide 12
Slide 12 text
@ManfredSteyer
DEMO: Webpack 5
Module Federation
Slide 13
Slide 13 text
@ManfredSteyer
How To Identify
Good Sub-Domains
and hence
Microfrontends?
Slide 14
Slide 14 text
@ManfredSteyer
Request
Product
Specify
Order
Approve
Order
Send
Order
Budget Hierarchy
Employee IT-Expert Manager Buying Agent
Product
Organizational boundaries like departments or different domain experts
Different models or same entities w/ different meaning
Slide 15
Slide 15 text
@ManfredSteyer
"Right" Domain Size
Should mirror a real-world domain
Large enough: Most use cases don't overlap domains
Small enough: One team per domain
Slide 16
Slide 16 text
@ManfredSteyer
Domain Driven
Design gives
a lot of advice!
Also see blog at: http://angulararchitects.io
@ManfredSteyer
Consequences
Easy to share code
Decoupling b/w domains: Conventions or Tools (Linting)
Easy to enforce one version policy
Different technologies: possible
@ManfredSteyer
Consequences
Enforces decoupling b/w domains
Allows different versions (good or bad?)
Allows different technologies
Needs lots of automation
Sharing Code via npm and versioning might be a pain
Slide 22
Slide 22 text
@ManfredSteyer
Recommentation, if you are not sure
Start with a monorepo
Enforce decoupling via linting
Reconsider splitting into several repos later
Slide 23
Slide 23 text
@ManfredSteyer
Pro Tip: Tooling for Monorepos
https://nrwl.io/nx
Slide 24
Slide 24 text
@ManfredSteyer
Communication
Slide 25
Slide 25 text
@ManfredSteyer
Communication is a Trade-Off
Decoupled
Sub-Domains
Communication
b/w Sub-Domains
Slide 26
Slide 26 text
@ManfredSteyer
Ideas
As little as possible!
Messaging/ Eventing: Loosly Coupling
Trigger a (Domain) Event
Don't expect an answer!
Slide 27
Slide 27 text
@ManfredSteyer
Very Simple Message Bus
@Injectable({ providedIn: 'root' })
export class MessageBus {
events$ = new ReplaySubject(1);
}
@ManfredSteyer
Well …
Don't directly share state b/w sub-domains (coupling!)
You might use Redux for eventing (like a Message Bus)
Slide 31
Slide 31 text
@ManfredSteyer
Sharing Widgets
Slide 32
Slide 32 text
@ManfredSteyer
Sharing Widgets is a Trade-Off too
Decoupled
Sub-Domains
Shared
Widgets
Prevent
duplicate
code (DRY)
Separate
Ways
Slide 33
Slide 33 text
@ManfredSteyer
Recommentation
Technical Widgets (e. g. Design System): Sharing ok
Use Case-specific widgets: Try to avoid (coupling!)
Slide 34
Slide 34 text
@ManfredSteyer
You can't have both:
Decoupling
and DRY !
Know your
Architecture
Goals!
Slide 35
Slide 35 text
@ManfredSteyer
Good Message:
Very often,
Separate Ways
DOES NOT mean
duplicate code!
Slide 36
Slide 36 text
@ManfredSteyer
Catalog Approval
Bounded Context
Ubiquitous Language
Slide 37
Slide 37 text
@ManfredSteyer
Bounded Context
per Sub-Domain
Also see blog at: http://angulararchitects.io
Slide 38
Slide 38 text
@ManfredSteyer
Web Components
Slide 39
Slide 39 text
@ManfredSteyer
Web Components can be useful,
esp. if you have to mix several
technologies
Slide 40
Slide 40 text
@ManfredSteyer
Shadow DOM helps to isolate styles
(emulated by default in Angular)
Slide 41
Slide 41 text
@ManfredSteyer
Also, lazy loading separately deployed
web components is easy
Slide 42
Slide 42 text
@ManfredSteyer
µService µApp3
µApp2
µApp1
Shell
Web Components for Macro-Architecture
Shared Widget
Shared Widget Shared Widget
Web Components for shared Widgets
Slide 43
Slide 43 text
@ManfredSteyer
Authentication
and Authorization
Slide 44
Slide 44 text
@ManfredSteyer
Possibilities
HTTP Only Cookie: Tunnel through one origin (+XSRF Token)
Token via Header: Different origins (consider OAuth2/OIDC)
• Share token via message bus or session storage
@ManfredSteyer
Nevertheless, try this approach if possible!
µService
µFrontend
µService
µFrontend
µService
µFrontend
Slide 49
Slide 49 text
@ManfredSteyer
Dashboards
Slide 50
Slide 50 text
@ManfredSteyer
Dashboard: Special Forces
Decoupled
Sub-Domains
Dashboard
Data and widgets from
each subdomain
Slide 51
Slide 51 text
@ManfredSteyer
Approaches
Dashboard loads widgets from each sub-domain
• Flexibility
• Needs stable contracts
• Agreements on common look and feel
• Lots HTTP Calls
Dashboard as a own sub-domain
• Pros and Cons are inversed
@ManfredSteyer
Free eBook
ANGULARarchitects.io/book
Updated for Module Federation
and Alternatives
Slide 54
Slide 54 text
@ManfredSteyer
Challenge
Slide 55
Slide 55 text
@ManfredSteyer
ngx-Snake
MIT License
Credits: Samir Hodzic
Slide 56
Slide 56 text
@ManfredSteyer
DEMO
Slide 57
Slide 57 text
@ManfredSteyer
Conclusion
Main Purpose
of µFrontends:
Scaling Teams
Decoupling
Federation:
Import From
Other App
Know Your
Domain!
Communication
& Sharing →
Trade-off
Monorepo vs.
Polyrepo
Slide 58
Slide 58 text
@ManfredSteyer
Contact and Downloads
[web] ANGULARarchitects.io
[twitter] ManfredSteyer
d
Slides & Examples Remote Company Workshops
and Consulting