Angular and Micro-Frontends

后端 未结 7 1785
抹茶落季
抹茶落季 2020-12-22 19:51

I am doing some research on how to split a huge single-page-monolith into a micro-frontend architecture.

The idea:

  • the page consists of several compo
7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-22 20:34

    Yes you can.

    However you don't really want to get stuck in a framework when you are writing web components, because the whole point of a web component is to be reused possibly anywhere.

    I share your vision, it's definitely better for the quality of the software as well as the productivity of developers to work on focused features rather than large apps when it comes to implementation.

    Finally, what you are looking for right now is not Angular, but StencilJS. Stencil is a compiler for web components who also generate a virtual DOM inside your component to improve it's UI performances. Check it out ;-)

提交回复
热议问题