rxjs-patterns

Installation
SKILL.md

RxJS Patterns in Angular

Master reactive programming in Angular with RxJS observables, operators, and best practices.

Core Patterns

Observable Creation

import { Observable, of, from, interval } from 'rxjs';

// From array
const numbers$ = from([1, 2, 3, 4]);

// From promise
const user$ = from(fetch('/api/user'));

// Interval
const timer$ = interval(1000);
Installs
6
GitHub Stars
6
First Seen
Feb 21, 2026
rxjs-patterns — spjoshis/claude-code-plugins