Raghin Kumar
Raghin Kumar

Reputation: 1

Angular 6 project architecture

I am new at angular 6, I am trying to make a multi module application. I would like to build each module separately and deploy it so it can be tested Then this module can be integrated together into main application .

Say there is module A which can deployed on its own and developed by team A Then module B developed by team B and it can also be deployed At last all modules string together and finally the main application can be deployed and tested

I was looking into building angular libraries, but don't know whether it will work

Basically I would like to follow what angular team has done, different packages which could be imported and used

Upvotes: 0

Views: 182

Answers (1)

Abhinav
Abhinav

Reputation: 51

Study angular's lazy loading concept. by using lazy loading you can break a project in multiple modules and its make your project fast too. the best place to know about this is angular's official documentation. the link is given below- https://angular.io/guide/lazy-loading-ngmodules

After that go for this following link- https://angular.io/cli/generate#library-command

Upvotes: 1

Related Questions