something i've been thinking about:
(async () => {
const manifest = await fetch(config.manifestUrl)
const { apps } = await manifest.json()
Promise.all(apps.map((app) =>
import(app).then(({ default: App, mount }) =>
mount(App))))
})()
A tiny universal frontend microservice loader. There's this thing called Sofe that a local company uses to do something similar, but their lib uses SystemJS, and `import()` is stage-3 so I think it's time to move on from SystemJS.