We are working on creating a structure using Angular 2 and are trying to decide whether Angular 2 is suitable for us or not.
Let's pretend that
- There is one application that includes a side navigation menu, a title, and a container.
- The project has 100 pages (each page contains huge business forms). And each of these forms represents separate modules.
- 3 teams are participating in this project.
- Users launched these forms and saw in the container.
- All pages use the same general modules, such as @ angular, core-js, rxjs, zone.js, etc.
With this expression, we wish all team members to create and deploy each form separately and individually, when necessary. We also want each team member to work on one of the related forms, as if it were a different project.
I assume that we have below the folder structure in a real server. Is there really no way to achieve this?
The following is a detailed organization of folders
Here are the project files
After developing the completions, page-99I only want to build and deploy (as shown in the folder Dist). After that, the main application will enter the service when loading this component.
Is this possible with Angular 2?
Thanks to everyone for sharing their ideas and information with me.