While you're working on FE, keep in mind the following general guidance;
Modular Structure: Organize the application into modules based on features. Each module should encapsulate related components, services, and routing configurations, which enhances maintainability and reusability.
Lazy Loading: Implement lazy loading for feature modules to improve initial load times by loading modules only when needed.
Single Responsibility Principle: Ensure that each component, service, or module has a single responsibility to simplify testing and maintenance.
Consistent Naming Conventions: Adopt clear and consistent naming conventions for files and folders to improve readability and maintainability across the codebase.
Reusable Components: Build reusable components to avoid duplication of code. This practice helps us in maintaining a clean codebase.
Overusing Services: Avoid putting too much business logic in services; keep them as simple connectors between the API and components.
Duplicating Code: Avoid code duplication by extracting common functionalities into shared services or components.
The initial conceptual idea for front-end development looks like this; ↙
While you're working on FE, keep in mind the following general guidance;