Wk-notes-03-09-micro-frontend-bootstrapper
Micro-front-end-bootstrapper
html container/anchor structure
It is supposed to be self contained and is possibly able to be mounted several time on on page.
bundle/app.js
bundle/app.js
Idea: register
as entry function, Widget
as widget base class
register
Widget
A base AppShell for bootstrapping, updating, and unmount.
Thoughts
Check requirement, if the bootstrapper needs to support multiple mount for save widget, ideally yes
To share a bootstrapper
either make a monorepo with all the widgets referencing to single bootstrapper, and bundle it with same vendor bundle (code-split and cache)
or make a provider(
widget-provider
) and reference it to all the package as dependencies and use the provider as the single entry point of bundles
We do not actually need a
render()
asreact
does, it mixes react behavior with micro-frontend contracts
Last updated
Was this helpful?