How to navigate the code structure
The application code is split within the src/app/
directory into modules providing
general features and abstract components (core) and
concrete feature modules for projects' use cases (child-dev-project).
Overall the following guidelines apply:
- Different functionalities are usually split into separate Angular Modules each in its own folder.
- At least all core features are well documented with JsDoc comments
and therefore also have a complete API Reference here (see Modules).
- If you have a certain challenge, browse the "How-To Guides" here in the documentation
reusable features and approaches are documented there.