angular-module-design

Design Angular modules using feature modules, lazy loading, and dependency injection. Use when organizing large Angular applications with proper separation of concerns.

By aj-geddes · 447 installs

npx skills add aj-geddes/useful-ai-prompts --skill angular-module-design

Source repository · Upstream listing

Angular Module Design Table of Contents [Overview]( overview) [When to Use]( when to use) [Quick Start]( quick start) [Reference Guides]( reference guides) [Best Practices]( best practices) Overview Architect scalable Angular applications using feature modules, lazy loading, services, and RxJS for reactive programming patterns. When to Use Large Angular applications Feature based organization Lazy loading optimization Dependency injection patterns Reactive state management Quick Start Minimal working example: Reference Guides Detailed implementations in the references/ directory: Guide Contents [Feature Module Structure](references/feature module structure.md) Feature Module Structure [Lazy Loading Routes](references/lazy loading routes.md) Lazy Loading Routes [Service with RxJS](references/service with rxjs.md) Service with RxJS [Smart and Presentational Components](references/smart and presentational components.md) Smart and Presentational Components [Dependency Injection and Providers](references/dependency injection and providers.md) Dependency Injection and Providers Best Practices ✅ DO Follow established patterns and conventions Write clean, maintainable code Add appropriate documentation Test thoroughly before deploying ❌ DON'T Skip testing or validation Ignore error handling Hard code configuration values