Skip to content

ichpuchtli/awesome-rxjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 

Awesome RxJS Awesome

A curated collection of awesome RxJS resources, libraries, tools, and frameworks

RxJS is a library for composing asynchronous and event-based programs using observable sequences. It provides one core type, the Observable, satellite types (Observer, Schedulers, Subjects) and operators inspired by Array methods to allow handling asynchronous events as collections.

RxJS GitHub Stars License: CC0

Official Docs · GitHub · npm · Stack Overflow


Contents


Official Resources

Getting Started

New to reactive programming? Start here.

Intermediate & Advanced

Ready to go deeper? These resources will level you up.

Hot vs Cold Observables

Paul Taylor (RxJS core contributor) with one of the best explanations of Hot & Cold Observables:

"cold" and "hot" don't refer to unicast vs. multicast, they refer to the state of the computation. An Observable represents an asynchronous computation (aka, it's a function that can return multiple values between now and infinity).

"Cold" Observables are just like functions which haven't been called (subscribed to) yet. Each time you call it (aka, subscribe to it), you're re-running whatever calculation the Observable performs.

"Hot" Observables are just regular cold Observables that you've shoved a Subject between you and the cold Observable source. When you subscribe to it, you're really subscribing to the Subject over and over.

Source: ReactiveX/RxJS#1121

The Reactive Timeline

RxJS didn't appear out of nowhere. It is the JavaScript chapter of a story that spans three decades, multiple languages, and some of the most elegant ideas in computer science. Here is that journey.

  ╔═══════════════════════════════════════════════════════════════════════════════╗
  ║                                                                             ║
  ║           ◆  THE REACTIVE TIMELINE  ◆                                       ║
  ║           From Observer Pattern to Native Browser Observables               ║
  ║                                                                             ║
  ╚═══════════════════════════════════════════════════════════════════════════════╝


  ── THE FOUNDATIONS ──────────────────────────────────────────────────────────────

            │
    1994    ●─── The Observer Pattern
            │    Erich Gamma, Richard Helm, Ralph Johnson & John Vlissides
            │    publish "Design Patterns: Elements of Reusable Object-Oriented
            │    Software" — the Gang of Four book. Chapter 5 defines the
            │    Observer pattern: a one-to-many dependency where objects are
            │    notified automatically of state changes. The seed is planted.
            │
            │
    1997    ●─── Functional Reactive Animation
            │    Conal Elliott & Paul Hudak at Yale publish "Functional Reactive
            │    Animation" (ICFP '97), introducing the concept of continuous
            │    time-varying values ("Behaviors") and discrete event streams
            │    ("Events") composed with pure functions. This paper gives birth
            │    to Functional Reactive Programming (FRP) — the theoretical
            │    ancestor of everything that follows.
            │
            │
   ~2007    ●─── The Duality Insight
            │    Erik Meijer and his Cloud Programmability Team at Microsoft
            │    (including Brian Beckman, Wes Dyer, Bart De Smet, Jeffrey
            │    Van Gogh, and Matthew Podwysocki) have a breakthrough while
            │    working on the Volta project: IObservable<T> is the
            │    mathematical dual of IEnumerable<T>. Where Enumerable lets
            │    you PULL values synchronously, Observable lets you PUSH
            │    values asynchronously. Same algebra, opposite direction.
            │    They derived the Observable interfaces mechanically — by
            │    reversing the arrows on Iterator. This elegant insight
            │    becomes the foundation of Reactive Extensions.
            │
            │        ┌─────────────────────────────────────────────┐
            │        │  IEnumerable<T>  ←──dual──→  IObservable<T> │
            │        │                                             │
            │        │  Pull / Synchronous    Push / Asynchronous  │
            │        │  Iterator.next()       Observer.onNext()    │
            │        │  try/catch             Observer.onError()   │
            │        │  return                Observer.onCompleted()│
            │        └─────────────────────────────────────────────┘
            │
            │
    2006    ●─── Flapjax
            │    Shriram Krishnamurthi, Leo Meyerovich, and team at Brown
            │    University create Flapjax — one of the first FRP languages
            │    for the web. It compiles to JavaScript and demonstrates
            │    that reactive programming can work in browsers. A proof of
            │    concept ahead of its time. (Won OOPSLA Most Influential
            │    Paper Award in 2019.)
            │

  ── THE BIRTH OF Rx ─────────────────────────────────────────────────────────────

            │
    2009    ●─── Rx Unveiled at Microsoft PDC
            │    Erik Meijer's team unveils Reactive Extensions at the
            │    Microsoft Professional Developers Conference — branded as
            │    "LINQ to Events." LINQ-style operators (Select, Where,
            │    SelectMany) applied to push-based streams. Developers can
            │    now compose asynchronous event sequences as elegantly as
            │    they query collections. The reactive revolution begins.
            │    (Rx.NET 1.0 officially ships June 2011.)
            │
            │
    2010    ●─── RxJS is Born
            │    Matthew Podwysocki creates RxJS — the JavaScript port of
            │    Rx — as part of the original Microsoft Rx team. It brings
            │    Observable, Observer, and the operator algebra to the
            │    browser. Preview builds ship with bindings for jQuery,
            │    Dojo, ExtJS, and Node.js.
            │
            │
    2012    ●─── Rx Goes Open Source
            │    Microsoft Open Technologies open-sources Reactive Extensions
            │    under the Apache 2.0 license — Rx.NET, RxJS, and RxCpp all
            │    land on CodePlex (later GitHub). The gates are open.
            │
            │

  ── THE EXPANSION ───────────────────────────────────────────────────────────────

            │
    2013    ●─── RxJava at Netflix
            │    Ben Christensen and Jafar Husain announce RxJava on the
            │    Netflix Tech Blog. Jafar — the first Rx user inside
            │    Microsoft — brought reactive thinking to Netflix when he
            │    joined in 2011. By announcement time, RxJava is already
            │    in production handling 2+ billion requests/day. Reactive
            │    patterns prove they work at Netflix scale.
            │
            │    Erik Meijer leaves Microsoft and founds Applied Duality.
            │
            │
    2014    ●─── ReactiveX Unifies the Ecosystem
            │    The ReactiveX GitHub org is formed. RxJava moves from
            │    Netflix's repo to ReactiveX/. ReactiveX.io launches as a
            │    cross-language hub: RxJava, RxJS, Rx.NET, RxSwift,
            │    RxKotlin, RxPY, RxRuby, RxScala, and more.
            │    "An API for asynchronous programming with observable streams."
            │
            │    RxJava reaches 1.0.0 in November. Jafar Husain's "Async
            │    Programming in ES7" talk at Netflix previews the dream of
            │    Observable as a language primitive.
            │
            │
            │
            │

  ── THE REWRITE ─────────────────────────────────────────────────────────────────

            │
    2015    ●─── A Pivotal Year
            │
            │    ┌ MAY ── Jafar Husain submits the Observable proposal to
            │    │        TC39. It reaches Stage 1. The dream: Observable
            │    │        as a native JavaScript type.
            │    │
            │    ├ JUN ── André Staltz publishes "The introduction to
            │    │        Reactive Programming you've been missing" — a
            │    │        gist that becomes the most-shared RP resource
            │    │        ever. He also creates Cycle.js and RxMarbles.
            │    │
            │    └ OCT ── Ben Lesh begins the RxJS 5 rewrite from scratch
            │             with Paul Taylor. Goals: performance, modularity,
            │             debuggable stack traces, and compliance with the
            │             TC39 Observable spec.
            │
            │
    2016    ●─── RxJS 5 & Angular 2
            │    September: Google releases Angular 2 with RxJS as its only
            │    external dependency — powering HttpClient, Router, and
            │    Reactive Forms. Millions of Angular devs become RxJS users
            │    overnight. Observable goes from niche to mainstream.
            │
            │    December 13: RxJS 5.0.0 stable ships. A ground-up rewrite
            │    under ReactiveX/rxjs by Ben Lesh and Paul Taylor. Faster,
            │    smaller, class-based Observables, Symbol.observable support.
            │
            │

  ── THE MODERN ERA ──────────────────────────────────────────────────────────────

            │
    2017    ●─── The Ecosystem Flourishes
            │    NgRx brings Redux-style reactive state management to Angular.
            │    NestJS launches with deep RxJS integration on the server.
            │    Nicholas Jamieson (cartant) begins building essential tools:
            │    rxjs-spy, rxjs-marbles, eslint-plugin-rxjs, rxjs-etc.
            │
            │    May: The TC39 Observable proposal stalls at Stage 1.
            │    December: WHATWG DOM issue #544 is filed — "Improving
            │    ergonomics of events with Observable" — opening a new
            │    path toward standardization via the web platform. It
            │    becomes the most-reacted-to standards issue on GitHub.
            │
            │
    2018    ●─── RxJS 6: The pipe() Revolution  (April)
            │    Pipeable operators replace dot-chaining. Tree-shaking finally
            │    works. Bundle sizes shrink dramatically. Ships alongside
            │    Angular 6. The API becomes cleaner and more functional:
            │
            │        // Before (RxJS 5)              // After (RxJS 6)
            │        // source.map(x => x * 2)       // source.pipe(
            │        //       .filter(x => x > 5)    //   map(x => x * 2),
            │        //       .subscribe(...)         //   filter(x => x > 5)
            │        //                               // ).subscribe(...)
            │
            │
    2019    ●─── RxJS Live
            │    Tracy Lee and This Dot Labs organize the world's first
            │    conference dedicated entirely to RxJS in Las Vegas. Ben Lesh
            │    delivers the keynote. The community has a home.
            │
            │
    2021    ●─── RxJS 7: Lean & Precise  (April 29)
            │    53% smaller bundle than v6. Better TypeScript types.
            │    toPromise() deprecated for firstValueFrom/lastValueFrom.
            │    New operators: animationFrames(), switchScan(). AsyncIterable
            │    support everywhere. The library is mature and battle-hardened.
            │
            │

  ── THE NATIVE FUTURE ───────────────────────────────────────────────────────────

            │
    2023    ●─── The Observable Proposal Revived
            │    Ben Lesh and Dominic Farolino (Google) revive the Observable
            │    proposal at WICG/WHATWG — this time as a Web Platform API
            │    rather than a TC39 language primitive. Chromium implementation
            │    begins. RxJS 8 development is deliberately paused to align
            │    with the native API.
            │
            │
    2025    ●─── Observable Goes Native  (April — Chrome 135)
            │    The Observable API ships in Chrome 135 and Chromium-based
            │    browsers. EventTarget.when() returns a native Observable.
            │    After 10 years and a journey from TC39 to WHATWG, Observable
            │    is finally a browser primitive.
            │
            │    RxJS's future role: extend and enrich the native Observable
            │    with the rich operator library developers love. RxJS 8
            │    (8.0.0-alpha.14) is being designed to align with and
            │    complement the native implementation.
            │
            │    Meanwhile, Angular adopts Signals for synchronous reactivity
            │    alongside RxJS for asynchronous streams — proving that the
            │    reactive story continues to evolve.
            │
            ▼
         ┌─────────────────────────────────────────────────────────┐
         │                                                         │
         │   "The future is already here — it's just not evenly    │
         │    distributed."                                        │
         │                                     — William Gibson    │
         │                                                         │
         └─────────────────────────────────────────────────────────┘

RxJS Version History

Version Era Key Innovation
RxJS 4 2012–2015 The original JS implementation of Reactive Extensions. Microsoft-era.
RxJS 5 2016–2018 Complete rewrite by Ben Lesh & Paul Taylor. Adopted by Angular.
RxJS 6 2018–2020 Pipeable operators (pipe()), tree-shakeable imports.
RxJS 7 2021–present 53% smaller, better TypeScript types. Current stable: 7.8.2.
RxJS 8 On Hold Paused to align with native browser Observables (Chrome 135+).

Key RxJS 7 Features:

  • 53% smaller bundle size than v6 (~19 KB vs ~52 KB)
  • Better TypeScript types (4.2+) — of() infers 9+ params, filter(Boolean) narrows types
  • toPromise() deprecated in favor of firstValueFrom() / lastValueFrom()
  • AsyncIterable support everywhere Observables are accepted
  • Simplified multicasting with improved share() operator
  • New operators: animationFrames(), switchScan()

Repositories:

Frameworks Using RxJS

Frameworks and platforms with deep RxJS integration.

  • Angular — Google's platform for building web applications. RxJS is a core dependency powering forms, HTTP, routing, and state management. Angular 20+ offers Signal/Observable interop via @angular/core/rxjs-interop.
  • NestJS — Progressive Node.js framework for building server-side applications. Uses RxJS in HTTP interceptors, microservices, and event handling.
  • Cycle.js — A fully reactive JavaScript framework for Human-Computer Interaction by André Staltz. Every app is a pure function from input streams to output streams.
  • Marble.js — Functional reactive Node.js framework built entirely on TypeScript and RxJS. Core concept: everything is a stream. Supports HTTP, WebSocket, and microservices.
  • Stencil — Web Component compiler by Ionic. Works well with RxJS for reactive component patterns.

State Management

State management solutions built on or deeply integrated with RxJS.

Angular Ecosystem

  • NgRx — The most popular RxJS-powered state management for Angular, inspired by Redux. Includes @ngrx/store, @ngrx/effects, @ngrx/entity, @ngrx/component-store, and the newer @ngrx/signals (SignalStore). v21+ available.
  • rx-angular — Comprehensive toolkit for fully reactive, high-performance Angular applications by Michael Hladky and the Push-Based team. Includes @rx-angular/state, @rx-angular/template, @rx-angular/cdk, and @rx-angular/isr.
  • NGXS — State management for Angular modeled after CQRS. Uses TypeScript classes and decorators to reduce boilerplate compared to NgRx.
  • Elf — A reactive immutable state management solution built on top of RxJS. Successor to Akita. Tree-shakeable and modular.
  • Akita — State management built on RxJS using the Observable Data Stores model. Archived as of May 2025; succeeded by Elf.

React Ecosystem

  • redux-observable — RxJS-based middleware for Redux using "Epics" — functions that take a stream of actions and return a stream of actions. Created by Jay Phelps. In maintenance mode.

Framework-Agnostic

React & RxJS

Integrating the power of RxJS with the React component model.

  • observable-hooks — React hooks for RxJS Observables. Concurrent mode safe, Suspense-compatible, 100% test coverage. The recommended way to use RxJS with React. Compatible with RxJS 6 & 7.
  • rxjs-hooks — React hooks for RxJS by LeetCode. Provides useObservable and useEventCallback. Note: Does not work properly with React 18+ StrictMode.

Libraries & Utilities

Operators, helpers, and utilities that extend RxJS.

  • rxjs-etc — A grab-bag of additional observables and operators for RxJS by Nicholas Jamieson. Includes combineLatestArray, debounceSync, concatMapEager, and more.
  • rxjs-ninja — Modular set of RxJS operators for working with strings, numbers, booleans, arrays, and more. Includes mapIf, tapOnFirstEmit, fromEventSource, and fromReadableStream.
  • backoff-rxjs — RxJS operators for exponential backoff strategies. Provides intervalBackoff and retryBackoff by Alex Okrushko.
  • rxjs-websockets — Flexible, cold-observable-based WebSocket library for RxJS. Supports browser and Node.js.
  • rxjs-for-await — Makes RxJS Observables work with async-await for await...of loops via AsyncIterables by Ben Lesh.
  • subscribable-things — Collection of reactive wrappers for browser APIs (mediaDevices, mediaQueryMatch, IntersectionObserver, MutationObserver, ResizeObserver).

Angular-Specific Utilities

  • @ngneat/until-destroy — Automatic unsubscription for Angular components when they are destroyed. Essential for preventing memory leaks.
  • ngx-operators — Collection of Angular-specific RxJS operators (prepare, indicate, download, and more).

Testing

Tools and techniques for testing RxJS code.

Debugging

Tools to help you understand what your Observables are doing.

  • rxjs-spy — Debugging library by Nicholas Jamieson. Tag observables, then monitor, pause, and replay them from the browser console. Features log, pause, let, and undo console APIs.
  • RxJS DevTools — Browser extension for visualizing Observable streams and their interactions over time.

Linting

Static analysis rules to keep your RxJS code clean and safe.

  • eslint-plugin-rxjs-x — Actively maintained ESLint rules for RxJS. Supports ESLint v9 flat config. Includes rules like no-floating-observables, no-async-subscribe, no-unsafe-switchmap, no-unsafe-takeuntil, and more. The recommended choice for new projects.
  • eslint-plugin-rxjs-angular-x — Angular-specific RxJS ESLint rules.
  • @smarttools/eslint-plugin-rxjs — Community fork supporting ESLint v9 flat config.
  • eslint-plugin-rxjs — The original ESLint rules for RxJS by Nicholas Jamieson. Note: Supports ESLint ≤8 only.

Data & Persistence

Reactive data layers powered by RxJS.

  • RxDB — A local-first, offline-capable, reactive NoSQL database for JavaScript by Daniel Meyer. Subscribe to query results in real-time. Supports IndexedDB, OPFS, SQLite, and more. Replication via HTTP, GraphQL, CouchDB, WebSocket, WebRTC, Supabase, and Firestore. Current version: 16.x.
  • apollo-angular — Production-ready GraphQL client for Angular with native RxJS integration. .valueChanges returns Observables.
  • apollo-client-rxjs — Wraps Apollo Client queries as RxJS Observables.
  • reactive-graphql — Standalone GraphQL implementation built around RxJS.

Books

  • RxJS in ActionPaul P. Daniels & Luis Atencio (Manning, 2017). Foreword by Ben Lesh. Deep theory and practical examples. Covers error handling, testing, and integration with React and Redux.
  • Build Reactive Websites with RxJSRandall Koutnik (Pragmatic Programmers, 2018). Hands-on, project-based. From fundamentals to building a canvas game. By a senior engineer at Netflix.
  • Reactive Programming with RxJS 5Sergi Mansilla (Pragmatic Programmers). Conceptual foundation with creative examples including a real-time earthquake visualization and a space shooter game.
  • Reactive Patterns with RxJS and Angular SignalsLamis Chebbi (Packt, 2nd Edition). Step-by-step guide covering RxJS 7 and Angular Signals interop.
  • RxJS Cookbook for Reactive ProgrammingNikola Mitrovic (Packt). 40+ real-world solutions for building async, event-driven web apps.
  • The Illustrated Book of RxJSCédric Soulas. 400+ pages of beautiful visual operator illustrations. Available on Gumroad.

Free Online Books

  • rx-book — Comprehensive free online reference by Denis Stoyanov (xgrommx).
  • Learn RxJS — Free online RxJS book by Chris Noring.

Video Courses

Free

Paid

Talks

Conference talks that shaped the RxJS community.

Foundational

Modern

Articles

Essential Reads

Patterns & Best Practices

Tutorials

Interactive Tools

Visualize, explore, and experiment with RxJS.

  • RxJS Marbles — Interactive marble diagrams by André Staltz.
  • Rx Visualizer — Animated playground for Rx Observables by Misha Moroshko.
  • ThinkRx — Instant marble diagram playground. Supports RxJS 5 and 6 style.
  • Reactive.how — Animated cards for learning reactive operators by Cédric Soulas.
  • RxJS Operator Decision Tree — Official interactive guide for choosing operators.
  • DevDocs — RxJS — Offline-capable API docs with instant search.

Community

Discussion & Q&A

Conferences & Events

Podcasts

The Observable Standard

The effort to make Observable a native part of JavaScript and the Web Platform.

Track Status Venue
TC39 proposal-observable Stage 1 (dormant) ECMAScript / TC39
WHATWG/WICG Observable Active Draft (Nov 2025) Web Platform / WHATWG
TC39 proposal-signals Stage 1 (active) ECMAScript / TC39

The original TC39 Observable proposal was introduced in 2015 by Jafar Husain but has remained at Stage 1. The active development has moved to the WHATWG/WICG venue, where Ben Lesh and Dominic Farolino (Google) are championing Observables as a Web Platform API.

Native Observables have begun shipping! The Observable API landed in Chrome 135, Edge 135+, and other Chromium-based browsers. Firefox and Safari have not yet implemented it. RxJS 8 development was paused specifically to align with this native implementation — future RxJS versions will complement and extend native Observables rather than replace them.

Meanwhile, Signals (a separate TC39 proposal) address a different aspect of reactivity — fine-grained, synchronous state tracking — and are complementary to Observables rather than a replacement. Angular has already adopted Signals as a core primitive alongside RxJS.

Related Reactive Libraries

The broader reactive programming ecosystem in JavaScript.

Library Description Author(s)
most.js Ultra-high performance reactive programming. Consistently the fastest in benchmarks. Brian Cavalier, David Chase
xstream An extremely intuitive, small, and fast reactive stream library. Designed for Cycle.js. André Staltz
Bacon.js A small FRP library for JavaScript. One of the pioneers of reactive JS. Juha Paananen
Kefir.js Reactive Programming library inspired by Bacon.js and RxJS with focus on high performance and low memory consumption. Roman Pominov
Highland.js Re-thinking the JavaScript utility belt. Manages synchronous and asynchronous code using Node-like Streams. Caolan McMahon
Wonka A tiny but capable push & pull stream library for TypeScript and ReasonML. Phil Pluckthun
Callbags A lightweight protocol for composable push-pull streams. André Staltz

People

The brilliant humans who built, shaped, and championed the RxJS ecosystem. This project exists because of their vision, dedication, and generosity. Thank you.

The Architects

  • Erik Meijer — The father of Reactive Extensions. Created Rx at Microsoft, inspiring reactive programming across every major language. A true visionary whose work changed how we think about asynchronous programming.

  • Ben Lesh — Lead maintainer of RxJS since version 5. Rewrote the library from scratch, making it faster, more modular, and more debuggable. Now championing the WHATWG Observable proposal to bring Observables natively to the web. Co-founder at This Dot Labs. Has given countless hours to the community through talks, training, and mentorship. Thank you, Ben.

  • Jafar Husain — Former Technical Lead at Netflix. Pioneered the use of reactive programming for async data at Netflix and brought the Observable proposal to TC39. His work demonstrated that reactive patterns could work at massive scale.

  • Matt Podwysocki — One of the earliest and most passionate evangelists for Reactive Extensions in JavaScript. Worked at Microsoft and Netflix helping bring Rx to the web. His energy and advocacy helped build the community from the ground up.

The Educators

  • André Staltz — Creator of Cycle.js, xstream, and Callbags. Wrote "The introduction to Reactive Programming you've been missing" — the most-shared reactive programming resource ever. Built RxMarbles. Created multiple Egghead courses. André's gift for making complex ideas accessible has introduced hundreds of thousands of developers to reactive programming. Now working at Socket. Thank you, André.

  • Brian Troncone — Creator of Learn RxJS, one of the most beloved learning resources in the ecosystem. Clear, practical, and always up to date. Countless developers learned RxJS through Brian's examples.

  • Cédric Soulas — Creator of Reactive.how, the beautiful animated card system for learning reactive operators. A testament to how great design can make complex concepts approachable.

  • Denis Stoyanov (xgrommx) — Author of the comprehensive RxJS Book and curator of awesome functional programming resources. A tireless contributor to the knowledge base.

The Builders

  • Nicholas Jamieson (cartant) — Created an extraordinary number of essential RxJS tools: eslint-plugin-rxjs, rxjs-spy, rxjs-marbles, rxjs-etc, and more. Nicholas built the tooling layer that makes RxJS safer and more debuggable in production. The ecosystem owes him an enormous debt.

  • Michael Hladky — Creator of rx-angular and founder of Push-Based. Google Developer Expert, Microsoft MVP. A relentless champion of Angular performance and reactivity. His work on @rx-angular/template and @rx-angular/state has made reactive Angular practical at scale.

  • Jay Phelps — Creator of redux-observable, bringing the power of RxJS to the Redux ecosystem. Made reactive middleware accessible to the massive React/Redux community.

  • Paul Taylor — Co-author of RxJS 5. Ben Lesh said he "wouldn't have been able to ship those first versions without Paul Taylor." Now at NVIDIA/RAPIDS working on Apache Arrow. His explanations of hot vs cold Observables remain some of the clearest ever written.

  • Daniel Meyer (pubkey) — Creator of RxDB, the reactive database. Proved that RxJS patterns work beautifully for real-time, offline-first data management.

  • Brandon Roberts — Lead maintainer of NgRx and creator of AnalogJS (Angular meta-framework). Angular Google Developer Expert. A cornerstone of the Angular reactive ecosystem.

  • Mike Ryan — Co-creator of NgRx. Wrote the initial NgRx Store and Effects code that brought Redux-style reactive state management to Angular. Google Developer Expert.

  • Alex Okrushko — NgRx core team member and creator of backoff-rxjs. A driving force in the Angular reactive state management ecosystem.

The Community Champions

  • Tracy Lee — CEO of This Dot Labs. Organized RxJS Live, the world's first RxJS conference. Brought together the community through events, panels, and advocacy. A tireless champion for open source.

  • Jan-Niklas Wortmann — RxJS core team member and Developer Advocate at JetBrains. Angular GDE. Helping shape the future of the library and improving the developer experience through better docs and tooling.

  • Jason Weinzierl — Took over maintenance of the RxJS ESLint ecosystem with eslint-plugin-rxjs-x, ensuring the community has modern linting support for ESLint v9+.

  • Shai Reznik — Creator of observer-spy and HiRez.io. Made testing RxJS Observables dramatically simpler.

  • Sergi Mansilla — Author of Reactive Programming with RxJS. Brought reactive concepts to life through creative examples.

  • Randall Koutnik — Author of Build Reactive Websites with RxJS. Senior engineer at Netflix who made reactive web development practical and fun.

  • Deborah Kurata — Google Developer Expert. Her ng-conf talks on RxJS pipelines and reactive Angular components have guided thousands of developers toward better reactive patterns.

  • OJ Kwon — One of the most prolific code contributors to the RxJS repository. Quietly essential to the project's health.

  • Dominic Farolino — Google engineer and editor of the WICG Observable spec. Working alongside Ben Lesh to bring native Observables to browsers.

And You

The RxJS ecosystem thrives because of every developer who has filed an issue, submitted a PR, answered a Stack Overflow question, written a blog post, given a talk, or helped a colleague understand Observables. If you've contributed to this ecosystem in any way — thank you.


Contribute

Contributions welcome! Read the contribution guidelines first.

License

CC0

To the extent possible under law, the contributors have waived all copyright and related or neighboring rights to this work.

Releases

No releases published

Packages

 
 
 

Contributors