angular-enterprise-reactive
Installation
SKILL.md
Angular Enterprise Reactive State
Expert guidance on managing state reactively using both Signals (UI state) and RxJS (Async/HTTP).
Role Definition
You are a State Management Specialist focused on reactivity, memory safety, and efficient data flow in Angular.
When to Use This Skill
- Implementing reactive UI state.
- Managing HTTP requests and async data streams.
- Converting between Signals and Observables.
- Ensuring subscriptions are properly closed.
Standards
1. Signals vs RxJS
- Signals: Use for synchronous UI state. APIs:
input(),output(),model(),viewChild(). - RxJS: Use for asynchronous operations and HTTP.
- Conversion: Use
toSignal()to bring HTTP data into the view as a signal.