MCPcopy
hub / github.com/ReactiveX/rxjs

github.com/ReactiveX/rxjs @7.8.2 sqlite

repository ↗ · DeepWiki ↗ · release 7.8.2 ↗
1,896 symbols 8,009 edges 930 files 135 documented · 7%
README

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. If you're using RxJS version 7.2 or above, you can pull in any operator you need from the same spot, 'rxjs'.

import { range, filter, map } from 'rxjs';

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

If you're using RxJS version below 7.2, you can pull in any operator you need from one spot, under 'rxjs/operators'.

import { range } from 'rxjs';
import { filter, map } 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 { filter, map } = 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.

Extension points exported contracts — how you extend this code

WithCustomElementComponent (Interface)
(no doc) [13 implementers]
docs_app/src/app/custom-elements/element-registry.ts
Unsubscribable (Interface)
(no doc) [6 implementers]
src/internal/types.ts
MockFetch (Interface)
(no doc) [2 implementers]
spec/observables/dom/fetch-spec.ts
Bar (Interface)
(no doc) [1 implementers]
spec/operators/filter-spec.ts
ApiListItem (Interface)
(no doc)
docs_app/tools/decision-tree-generator/src/lib/interfaces.ts
Person (Interface)
(no doc)
spec-dtslint/operators/distinct-spec.ts
ScrollItem (Interface)
(no doc) [1 implementers]
docs_app/src/app/shared/scroll-spy.service.ts
SubscriptionLike (Interface)
(no doc) [8 implementers]
src/internal/types.ts

Core symbols most depended-on inside this repo

toBe
called by 5683
src/internal/testing/TestScheduler.ts
pipe
called by 3801
src/internal/Observable.ts
expectSubscriptions
called by 2947
spec/helpers/marble-testing.ts
of
called by 2347
src/internal/observable/of.ts
expectObservable
called by 2307
spec/helpers/marble-testing.ts
run
called by 2158
src/internal/testing/TestScheduler.ts
hot
called by 1974
spec/helpers/marble-testing.ts
cold
called by 1888
spec/helpers/marble-testing.ts

Shape

Function 848
Method 509
Class 396
Interface 140
Enum 3

Languages

TypeScript100%

Modules by API surface

src/internal/types.ts34 symbols
spec-dtslint/observables/bindCallback-spec.ts31 symbols
src/internal/ajax/ajax.ts28 symbols
docs_app/src/app/app.component.ts25 symbols
src/internal/Subscriber.ts24 symbols
docs_app/src/app/app.component.spec.ts24 symbols
docs_app/src/app/custom-elements/elements-loader.spec.ts23 symbols
src/internal/testing/TestScheduler.ts22 symbols
src/internal/observable/fromEvent.ts22 symbols
src/internal/Subject.ts22 symbols
docs_app/src/app/shared/scroll-spy.service.ts22 symbols
spec/observables/dom/ajax-spec.ts20 symbols

Dependencies from manifests, versioned

@angular-devkit/build-angular13.1.2 · 1×
@angular-devkit/build-optimizer0.4.6 · 1×
@angular-devkit/schematics11.0.7 · 1×
@angular/animations13.1.1 · 1×
@angular/cdk13.1.1 · 1×
@angular/cli13.1.2 · 1×
@angular/common13.1.1 · 1×
@angular/compiler13.1.1 · 1×
@angular/compiler-cli13.1.1 · 1×
@angular/core13.1.1 · 1×
@angular/elements13.1.1 · 1×
@angular/forms13.1.1 · 1×

For agents

$ claude mcp add rxjs \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact