RxJS

The standard library for composing asynchronous and event-based programs using observable sequences

Library
npm
v7.8.2
31,699stars
Apache License 2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
85/100Excellent
Development Activity92
Maintenance72
Community76
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
82/100Excellent
Architecture90
Code Quality85
Innovation88
Learning Curve65

RxJS (Reactive Extensions for JavaScript) is the reference implementation of the ReactiveX pattern for JavaScript and TypeScript. It models any source of asynchronous data — DOM events, HTTP responses, WebSocket messages, timers, or plain arrays — as an Observable, then lets you compose that stream with a large, consistent library of pipeable operators (map, filter, mergeMap, debounceTime, and roughly a hundred more) rather than hand-rolling callback or Promise chains.

It underpins reactive state and async orchestration in Angular (which ships it as a first-class dependency), and is widely adopted standalone in React, Vue, Node.js backends, and any codebase that needs precise control over cancellation, backpressure, timing, and multicasting of async event sequences.

What You Get

  • The Observable/Observer/Subscription primitives plus Subject variants (Subject, BehaviorSubject, ReplaySubject, AsyncSubject) for multicasting values to many consumers
  • Around 100 pipeable operators covering transformation (map, scan, mergeMap), filtering (filter, debounceTime, distinctUntilChanged), combination (combineLatest, forkJoin, merge, zip), and error handling (catchError, retry)
  • A pluggable Scheduler system (asap, async, animationFrame, queue, virtual time) for controlling exactly when and where work executes, including deterministic testing via TestScheduler and marble diagrams
  • Creation functions (of, from, interval, fromEvent, fromFetch, timer) that turn events, promises, iterables, and timers into Observables
  • First-class TypeScript types shipped in the package itself, plus ajax/fetch/testing/webSocket sub-path exports for scoped imports

Common Use Cases

  • Debouncing and cancelling in-flight search-as-you-type or autocomplete HTTP requests
  • Coordinating complex async workflows in Angular apps (HTTP, forms, router events) via the framework’s built-in RxJS integration
  • Multicasting a single WebSocket or SSE connection to multiple UI subscribers without re-opening it per consumer
  • Modeling drag-and-drop, gesture, and other multi-event DOM interactions as composable streams instead of nested event listeners
  • Orchestrating retry/backoff and timeout logic around flaky network calls with built-in operators instead of custom state machines

Under The Hood

Architecture — RxJS layers on top of a small core (Observable, Subscriber, Subscription) that governs subscription lifecycle and teardown; Subject and its variants (BehaviorSubject, ReplaySubject, AsyncSubject) extend Observable to add multicasting, and roughly 100 pipeable operators (src/internal/operators/*.ts) are built as pure higher-order functions composed via .pipe() rather than instance methods, keeping the core surface small and tree-shakeable. A dedicated Scheduler abstraction (Scheduler.ts, scheduler/AsyncScheduler.ts, QueueScheduler.ts, AnimationFrameScheduler.ts, VirtualTimeScheduler.ts) decouples what runs from when it runs, which is also what enables deterministic marble-diagram testing via TestScheduler.

Tech Stack — The codebase is ~91% TypeScript, built through tsc project references into separate CJS, ESM, and .d.ts type outputs (compiled by tsconfig.cjs.json/tsconfig.esm.json/tsconfig.types.json), managed as an Nx-orchestrated Yarn workspace monorepo (packages/rxjs, packages/observable, apps/rxjs.dev docs site). Dependency-cruiser enforces the internal module boundaries (no accidental circular imports between operators and core), and the package ships dual CJS/ESM exports plus sub-path exports for /ajax, /fetch, /operators, /testing, and /webSocket.

Code Quality — The test suite is extensive: 163 spec files under spec/, including one spec per operator (98 operator specs alone) using Mocha, Chai, and Sinon, plus a separate spec-dtslint suite that type-checks the public API surface at the type level. ESLint is configured project-wide, and every operator source file follows the same shape — typed signature, exhaustive JSDoc with a runnable example, then a small operate-based implementation — which keeps the ~100-operator surface consistent despite its size.

API Design — The pipeable-operator model (source$.pipe(map(...), filter(...), catchError(...))) is RxJS’s signature ergonomic choice: operators are plain functions, so consumers only import the ones they use and tree-shaking removes the rest, and since v7.2 all operators are importable directly from the rxjs root instead of a separate rxjs/operators path. Every operator’s JSDoc includes a runnable usage example and links to related operators, and the marble-diagram testing utilities (TestScheduler, cold()/hot() helpers) give consumers the same tooling the library’s own test suite uses, which is unusually generous for a library of this scope.

Used by 52 apps in this directory

TypeScript
76%
AGPL 3.0

Abby

Developer Tools · Product Management

167

Statically typed feature flags, remote config, and A/B testing with framework-native SDKs for TypeScript teams.

View details
30
Repo Health
70
Technical
63
Dependency
Built with
TypeScript76%
MDX18%
Updated 1 years ago
TypeScript
88%
Other

AFFiNE

Productivity · Project Management · Note Taking

71,668

Write, draw, and plan in one infinite canvas — the open-source alternative to Notion and Miro that keeps your data yours.

View details
91
Repo Health
87
Technical
68
Dependency
Built with
TypeScript88%
Updated today
TypeScript
72%
AGPL 3.0

APITable

Low Code Platforms · Databases

15,526

API-first collaborative spreadsheet-database platform that auto-generates REST APIs and lets teams build internal tools, CRMs, and dashboards without code.

View details
53
Repo Health
77
Technical
60
Dependency
Built with
TypeScript72%
Java22%
Updated 9 months ago
TypeScript
96%
Other

Amplication

Developer Tools · AI Code Assistants · Automation

16,010

Create production-ready backend services with your organization's standards baked in — generating NestJS, Prisma, and GraphQL code that you own and control.

View details
61
Repo Health
84
Technical
60
Dependency
Built with
TypeScript96%
Updated 1 months ago
Go
85%
Apache 2.0

Argo Workflows

Devops · Data Engineering

16,916

The most popular Kubernetes-native workflow engine for orchestrating containerized DAGs, ML pipelines, CI/CD, and parallel batch jobs at scale.

View details
96
Repo Health
90
Technical
70
Dependency
Built with
Go85%
TypeScript11%
Updated today
TypeScript
97%
AGPL 3.0

Bigcapital

Invoicing Finance

3,846

Self-hostable double-entry accounting platform with invoicing, inventory, multi-currency, and real-time financial reporting for small and medium businesses.

View details
91
Repo Health
77
Technical
64
Dependency
Built with
TypeScript97%
Updated yesterday
Go
52%
MIT

Bytebase

Devops

14,396

An open-source database CI/CD and DevSecOps platform — schema migration review, GitOps-driven changes, data masking, and access control across MySQL, PostgreSQL, Oracle, Snowflake, MongoDB, and more.

View details
92
Repo Health
73
Technical
69
Dependency
Built with
Go52%
TypeScript39%
Updated today
TypeScript
96%
Other

Cal.diy

Scheduling

47,796

The 100% MIT-licensed, community-driven scheduling platform — self-host your own booking infrastructure with no enterprise strings attached.

View details
93
Repo Health
86
Technical
66
Dependency
Built with
TypeScript96%
Updated 1 weeks ago
Go
76%
AGPL 3.0

Coder

Devops · Developer Tools · Code Editors

14,199

Self-hosted cloud development environments and AI coding agents — defined in Terraform, connected via WireGuard, automatically shut down when idle.

View details
93
Repo Health
90
Technical
71
Dependency
Built with
Go76%
TypeScript22%
Updated today

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search