Skip to content
A reactive programming library for JavaScript
TypeScript JavaScript CSS HTML Other
Branch: master
Clone or download

Latest commit

benlesh refactor: Use Infinity (#5395)
We were using Number.POSITIVE_INFINITY, which is not only YELLING at me, but unnecessarily verbose. It technically was probably adding to bundle sizes, as well, but not very much. Either way, Infinity is better.
Latest commit 02f458d May 5, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci chore: bump CI typescript version (#5168) Dec 2, 2019
.github docs(app): removed old docs folder (#5338) Mar 17, 2020
docs_app docs: Fix simple typo, stoted -> stored (#5396) Apr 19, 2020
integration feat(TimestampProvider): Reduced scheduler footprint for default usag… Apr 3, 2020
resources/CI-CD [ImgBot] Optimize images (#5106) Nov 1, 2019
spec-dtslint refactor: rename Unshift to Cons (#5287) Apr 29, 2020
spec refactor: Use Infinity (#5395) May 5, 2020
src refactor: Use Infinity (#5395) May 5, 2020
tools build(package): refactoring build scripts with project ref / incremen… Oct 15, 2019
.dependency-cruiser.json fix(compat): deprecate Observable.if/throw (#3527) Apr 5, 2018
.dockerignore docs (Docker support for docs_app) (#4719) Nov 30, 2019
.eslintignore Test for side effects, and remove existing ones (#4769) May 16, 2019
.eslintrc chore(package.json): update package dependencies Jan 29, 2016
.gitattributes refactor(typings): updated typings to support symbol observables and … Feb 20, 2018
.gitignore chore: replace dtslint with dtslint-like rules in tslint-etc (#5123) Nov 11, 2019
.make-helpers.js feat(rxjs-compat): removed for v7 (#4839) Jun 10, 2019
CHANGELOG.md chore(publish): 7.0.0-beta.0 Apr 3, 2020
CODE_OF_CONDUCT.md chore(CodeOfConduct): Update Code of Conduct (#3148) Dec 1, 2017
CONTRIBUTING.md docs(app): removed old docs folder (#5338) Mar 17, 2020
Dockerfile docs (Docker support for docs_app) (#4719) Nov 30, 2019
LICENSE.txt chore(license): Updated year range to 2018 (#3207) Jan 8, 2018
README.md docs(readme): fix maintainer guidelines link (#5394) Apr 16, 2020
package-lock.json chore: update to TS 3.8 (#5376) Apr 3, 2020
package.json chore(lint): add no-unused-declaration rule (#4790) Apr 22, 2020
tsconfig.json chore: disable suppressImplicitAnyIndexErrors (#5248) Jan 21, 2020
tslint.json chore(lint): add no-unused-declaration rule (#4790) Apr 22, 2020
wallaby.js feat(rxjs-compat): removed for v7 (#4839) Jun 10, 2019

README.md

RxJS Logo RxJS: Reactive Extensions For JavaScript

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

RxJS 7 (beta)

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, unreleased work, which is against v7 of RxJS right now
  • stable - This is the branch for the latest version you'd get if you do npm install rxjs

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/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 build_all - builds everything
  • npm test - runs tests
  • npm run test_no_cache - run test with ts-node set to false

Performance Tests

Run npm run build_perf or npm run perf to run the performance tests with protractor.

Run npm run perf_micro [operator] to run micro performance test benchmarking operator.

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.

You can’t perform that action at this time.