All Projects → ReactiveX → Rxjs

ReactiveX / Rxjs

Licence: apache-2.0
A reactive programming library for JavaScript

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
SCSS
7915 projects
HTML
75241 projects

Labels

Projects that are alternatives of or similar to Rxjs

Formily
Alibaba Group Unified Form Solution -- Support React/ReactNative/Vue2/Vue3
Stars: ✭ 6,554 (-74.93%)
Mutual labels:  rxjs
Soundcloud Ngrx
SoundCloud API client with Angular • RxJS • ngrx/store • ngrx/effects
Stars: ✭ 438 (-98.32%)
Mutual labels:  rxjs
Reactive.how
Learn reactive programming with animated cards.
Stars: ✭ 592 (-97.74%)
Mutual labels:  rxjs
Vue Crud X
Vue+Express Cookbook & CRUD Component (with Vite and Web Components)
Stars: ✭ 393 (-98.5%)
Mutual labels:  rxjs
Learning Rxjs
Learning RxJS step by step
Stars: ✭ 417 (-98.4%)
Mutual labels:  rxjs
Talkie
Simple slide presentation library. Responsive scaling & markdown ready.
Stars: ✭ 500 (-98.09%)
Mutual labels:  rxjs
Ngx Auto Unsubscribe
Class decorator that will automatically unsubscribe from observables
Stars: ✭ 337 (-98.71%)
Mutual labels:  rxjs
Angular Learning Resources
Curated chronological list of learning resources for Angular, from complete beginner to advanced level
Stars: ✭ 615 (-97.65%)
Mutual labels:  rxjs
Store
RxJS powered state management for Angular applications, inspired by Redux
Stars: ✭ 3,959 (-84.86%)
Mutual labels:  rxjs
Rxjs Spy
A debugging library for RxJS
Stars: ✭ 576 (-97.8%)
Mutual labels:  rxjs
Geofirex
🌐 📍 Geolocation Queries with Firestore & RxJS
Stars: ✭ 396 (-98.49%)
Mutual labels:  rxjs
Panel Magic
🌈🐴🐂Visual prototyping platform for Angular 🐶🐷🌈
Stars: ✭ 414 (-98.42%)
Mutual labels:  rxjs
Angular Async Local Storage
Efficient local storage module for Angular apps and PWA: simple API + performance + Observables + validation
Stars: ✭ 539 (-97.94%)
Mutual labels:  rxjs
Recycle
Convert functional/reactive object description using RxJS into React component
Stars: ✭ 374 (-98.57%)
Mutual labels:  rxjs
Frint
Modular JavaScript framework for building scalable and reactive applications
Stars: ✭ 608 (-97.67%)
Mutual labels:  rxjs
Rxjs Tslint Rules
TSLint rules for RxJS
Stars: ✭ 341 (-98.7%)
Mutual labels:  rxjs
Observable Hooks
⚛️☯️💪 React hooks for RxJS Observables. Concurrent mode safe.
Stars: ✭ 456 (-98.26%)
Mutual labels:  rxjs
React Native Sensors
A developer friendly approach for sensors in React Native
Stars: ✭ 657 (-97.49%)
Mutual labels:  rxjs
Focal
Program user interfaces the FRP way.
Stars: ✭ 613 (-97.66%)
Mutual labels:  rxjs
Xreact
reactive x react = xreact
Stars: ✭ 565 (-97.84%)
Mutual labels:  rxjs

RxJS Logo RxJS: Reactive Extensions For JavaScript

CI npm version Join the chat at https://gitter.im/Reactive-Extensions/RxJS

The Roadmap from RxJS 7 to 8

Curious what's next for RxJS? Follow along with Issue 6367.

RxJS 7

FOR 6.X PLEASE GO TO THE 6.x BRANCH

Reactive Extensions Library for JavaScript. This is a rewrite of Reactive-Extensions/RxJS and is the latest production-ready version of RxJS. This rewrite is meant to have better performance, better modularity, better debuggable call stacks, while staying mostly backwards compatible, with some breaking changes that reduce the API surface.

Apache 2.0 License

Versions In This Repository

  • master - This is all of the current work, which is against v7 of RxJS right now
  • 6.x - This is the branch for version 6.X

Most PRs should be made to master.

Important

By contributing or commenting on issues in this repository, whether you've read them or not, you're agreeing to the Contributor Code of Conduct. Much like traffic laws, ignorance doesn't grant you immunity.

Installation and Usage

ES6 via npm

npm install rxjs

It's recommended to pull in the Observable creation methods you need directly from 'rxjs' as shown below with range. And you can pull in any operator you need from one spot, under 'rxjs/operators'.

import { range } from "rxjs";
import { map, filter } from "rxjs/operators";

range(1, 200)
  .pipe(
    filter(x => x % 2 === 1),
    map(x => x + x)
  )
  .subscribe(x => console.log(x));

CDN

For CDN, you can use unpkg:

https://unpkg.com/rxjs@^7/dist/bundles/rxjs.umd.min.js

The global namespace for rxjs is rxjs:

const { range } = rxjs;
const { map, filter } = rxjs.operators;

range(1, 200)
  .pipe(
    filter(x => x % 2 === 1),
    map(x => x + x)
  )
  .subscribe(x => console.log(x));

Goals

  • Smaller overall bundles sizes
  • Provide better performance than preceding versions of RxJS
  • To model/follow the Observable Spec Proposal to the observable
  • Provide more modular file structure in a variety of formats
  • Provide more debuggable call stacks than preceding versions of RxJS

Building/Testing

  • npm run compile build everything
  • npm test run tests
  • npm run dtslint run dtslint tests

Adding documentation

We appreciate all contributions to the documentation of any type. All of the information needed to get the docs app up and running locally as well as how to contribute can be found in the documentation directory.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].