Reputation: 736
I found this tutorial: https://medium.com/disney-streaming/combining-multiple-angular-applications-into-a-single-one-e87d530d6527 This is about combining multiple Angular applications into single one..
But I have a question, if this is even possible what I want. I want to create angular project. In this project I want comopnents like CV builder, poll, forum. All these micro apps (CV builder, poll, formu,..) work together as one project in port 4200.. Is there an option, to make possible that I can even run my CV builder by its own on 4201 and maybe poll on 4202 but also everything together on 4200? (General idea is that if i need to repair or change something on CV builder, I can just take down CV builder without taking down the whole project or "main app).
Sorry if my question is confusing, but I need just a prototype for this.. Something like in this tutorial I posted in this question.
Upvotes: 0
Views: 1482
Reputation: 1382
Like what @R.Richards said, you can serve each application on a different port but in order to tie everything together to a single port 4200
, you'll need to use something like single-spa.
Upvotes: 1