angular-best-practices-v20▌
develite98/angular-best-practices · updated Apr 8, 2026
Comprehensive performance optimization guide for Angular 20+ applications with modern features like Signals, httpResource, signal inputs/outputs, @defer blocks, and native control flow syntax. Contains 35+ rules across 8 categories, prioritized by impact to guide automated refactoring and code generation.
Angular Best Practices (v20+)
Comprehensive performance optimization guide for Angular 20+ applications with modern features like Signals, httpResource, signal inputs/outputs, @defer blocks, and native control flow syntax. Contains 35+ rules across 8 categories, prioritized by impact to guide automated refactoring and code generation.
When to Apply
Reference these guidelines when:
- Writing new Angular 20+ components
- Using Signals for reactive state (signal, computed, linkedSignal, effect)
- Using httpResource/resource for data fetching
- Using signal inputs/outputs instead of decorators
- Implementing @defer for lazy loading
- Using native control flow (@if, @for, @switch)
- Implementing SSR with incremental hydration
- Reviewing code for performance issues
Key Features (v20+)
- Signals - Fine-grained reactivity (signal, computed, linkedSignal, effect)
- httpResource - Signal-based HTTP with automatic loading states
- Signal inputs/outputs - input(), output() replacing decorators
- @defer - Template-level lazy loading with hydration triggers
- @for / @if - Native control flow with required track
- Standalone by default - No standalone: true needed
- Host bindings - host object instead of @HostBinding decorators
- Functional interceptors - Simpler HTTP interceptors
- takeUntilDestroyed - Built-in subscription cleanup
- Incremental hydration - @defer (hydrate on ...) for SSR
Rule Categories by Priority
| Priority | Category | Impact | Prefix |
|---|---|---|---|
| 1 | Change Detection | CRITICAL | change- |
| 2 | Bundle & Lazy Loading | CRITICAL | bundle- |
| 3 | RxJS Optimization | HIGH | rxjs- |
| 4 | Template Performance | HIGH | template- |
| 5 | Dependency Injection | MEDIUM-HIGH | di- |
| 6 | HTTP & Caching | MEDIUM | http- |
| 7 | Forms Optimization | MEDIUM | forms- |
| 8 | General Performance | LOW-MEDIUM | ssr- |
Quick Reference
1. Change Detection (CRITICAL)
change-signals- Use Signals instead of BehaviorSubject for reactive statechange-onpush- Use OnPush change detection strategychange-detach-reattach- Detach change detector for heavy operationschange-run-outside-zone- Run non-UI code outside NgZonecomponent-signal-io- Use signal inputs/outputs instead of @Input/@Output decoratorssignal-computed-pure- Keep computed() pure, no side effectssignal-effect-patterns- Use effect() correctly, avoid anti-patternssignal-linkedsignal- Use linkedSignal for derived + writable state
2. Bundle & Lazy Loading (CRITICAL)
bundle-standalone- Use standalone components (default in v20+)bundle-lazy-routes- Lazy load routes with loadComponent/loadChildrenbundle-defer- Use @defer blocks for heavy componentsbundle-preload- Preload routes on hover/focus for perceived speedbundle-no-barrel-imports- Avoid barrel files, use direct imports
3. RxJS Optimization (HIGH)
rxjs-async-pipe- Use async pipe instead of manual subscriptionsrxjs-takeuntil- Use takeUntilDestroyed for automatic cleanuprxjs-share-replay- Share observables to avoid duplicate requestsrxjs-operators- Use efficient RxJS operatorsrxjs-mapping-operators- Use correct mapping operators (switchMap vs exhaustMap)rxjs-no-nested-subscribe- Avoid nested subscriptions
4. Template Performance (HIGH)
template-trackby- Use track function in @for loops (required in v20+)template-pure-pipes- Use pure pipes for expensive transformationstemplate-ng-optimized-image- Use NgOptimizedImage for image optimizationtemplate-no-function-calls- Avoid function calls in templatestemplate-virtual-scroll- Use virtual scrolling for large lists
5. Dependency Injection (MEDIUM-HIGH)
di-provided-in-root- Use providedIn: 'root' for singleton servicesdi-injection-token- Use InjectionToken for non-class dependenciesdi-factory-providers- Use factory providers for complex initializationdirective-host-composition- Use hostDirectives for composition
6. HTTP & Caching (MEDIUM)
http-resource- Use httpResource/resource for signal-based data fetchinghttp-interceptors- Use functional interceptors for cross-cutting concernshttp-transfer-state- Use TransferState for SSR hydrationrouting-signal-inputs- Use signal-based route inputs
7. Forms Optimization (MEDIUM)
forms-reactive- Use reactive forms with typed FormGroup
8. General Performance (LOW-MEDIUM)
ssr-hydration- Use incremental hydration with @defer (hydrate on ...)perf-memory-leaks- Prevent memory leaks (timers, listeners, subscriptions)perf-web-workers- Offload heavy computation to Web Workersarch-smart-dumb-components- Use Smart/Dumb component pattern
How to Use
Read individual rule files for detailed explanations and code examples:
rules/change-signals.md
rules/bundle-defer.md
rules/http-resource.md
Each rule file contains:
- Brief explanation of why it matters
- Incorrect code example with explanation
- Correct code example with explanation
- Additional context and references
Full Compiled Document
For the complete guide with all rules expanded: AGENTS.md
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★67 reviews- ★★★★★Shikha Mishra· Dec 24, 2024
I recommend angular-best-practices-v20 for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Ganesh Mohane· Dec 20, 2024
We added angular-best-practices-v20 from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Amina Patel· Dec 16, 2024
angular-best-practices-v20 reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Amina Menon· Dec 12, 2024
Useful defaults in angular-best-practices-v20 — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Mateo Bansal· Dec 8, 2024
Registry listing for angular-best-practices-v20 matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Sophia Singh· Dec 4, 2024
Keeps context tight: angular-best-practices-v20 is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Alexander Khan· Dec 4, 2024
Solid pick for teams standardizing on skills: angular-best-practices-v20 is focused, and the summary matches what you get after install.
- ★★★★★Hana Perez· Dec 4, 2024
We added angular-best-practices-v20 from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Amina Johnson· Nov 27, 2024
angular-best-practices-v20 fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Hana Lopez· Nov 23, 2024
angular-best-practices-v20 is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 67