Reactive Extensions Library for JavaScript
  • TypeScript 90.9%
  • JavaScript 5.6%
  • SCSS 2.1%
  • HTML 1.1%
  • Shell 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-05-13 12:04:34 +02:00
.github chore: invoke compile via nx in ci_ts_latest 2024-02-29 09:28:49 -06:00
apps/rxjs.dev docs(rxjs.dex): replace polyfill.io with a Cloudflare equivalent (#7487) 2024-06-28 08:45:38 +02:00
packages Add rxcore package 2026-05-13 12:04:34 +02:00
resources/CI-CD [ImgBot] Optimize images (#5106) 2019-10-31 20:30:00 -05:00
scripts chore: update nx to latest, simplify config (#7428) 2024-01-17 11:12:54 -06:00
.editorconfig chore: migrate to eslint (#7368) 2023-11-20 11:43:55 -06:00
.eslintignore chore: allow integration tests to work with local @rxjs/observable 2024-02-29 09:28:49 -06:00
.eslintrc.json chore: nx 17.3.1 2024-02-29 09:28:49 -06:00
.gitignore chore: tshy 2024-02-29 09:28:49 -06:00
.prettierrc.json Subject specs run mode (#6925) 2022-04-17 13:28:55 +10:00
CODE_OF_CONDUCT.md chore(CodeOfConduct): Update Code of Conduct (#3148) 2017-12-01 10:43:39 -08:00
CONTRIBUTING.md chore: Move to monorepo (#7342) 2023-09-21 11:28:07 -05:00
LICENSE.txt chore: update copyright year and info 2025-02-21 22:53:22 -06:00
nx.json chore: mostly working, not integration yet 2024-02-29 09:28:49 -06:00
package.json chore: nx 17.3.2 2024-02-29 09:28:49 -06:00
README.md chore: Move to monorepo (#7342) 2023-09-21 11:28:07 -05:00
SECURITY.md Create SECURITY.md (#7273) 2024-01-04 10:59:44 -06:00
yarn.lock chore: nx 17.3.2 2024-02-29 09:28:49 -06:00

RxJS Logo RxJS: Reactive Extensions For JavaScript

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

RxJS 8 Monorepo

Look for RxJS and related packages under the /packages directory. Applications like the rxjs.dev documentation site are under the /apps directory.

Apache 2.0 License

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.

Versions In This Repository

  • master - This is all of the current work, which is against v8 of RxJS right now
  • 7.x - This is the branch for version 7.X
  • 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.

Development

Because of this issue we're using yarn. (Basically the docs app uses @types/jasmine, and the package uses @types/mocha and they get hoisted to the top level by npm install with workspaces, and then TypeScript vomits everywhere when you try to build).

  1. cd to the repository root
  2. yarn install to install all dependencies
  3. yarn workspace rxjs test will run the RxJS test suite
  4. yarn workspace rxjs.dev start will start the rxjs.dev documentation site local development server