DEV Community

Discussion on: Micro-app architecture using Angular

Collapse
 
pranesh229 profile image
Pranesh

Hi Graham

Thank you for going through the article.

It is recommended keeping all the micro-apps in the same version. Having said that I have not experienced anything breaking while using a micro-app with Angular version 8.1 along with another micro-app with Angular version 8.2.

Any external script which is common across all the micro-apps can be externalized using extra-webpack.config.js. Any other micro-app specific script needs to be bundled along with the micro-app.

The compiled version of the micro-app can be hosted in any external systems or cdns. Here for simplicity, I have kept the scripts inside the assets folder.

Hope my answers help. Let me know if you need any other clarification.

Thanks