Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reactivex/rxjs
A reactive programming library for JavaScript
https://github.com/reactivex/rxjs
javascript rxjs
Last synced: 6 days ago
JSON representation
A reactive programming library for JavaScript
- Host: GitHub
- URL: https://github.com/reactivex/rxjs
- Owner: ReactiveX
- License: apache-2.0
- Created: 2015-03-15T06:17:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-22T08:51:22.000Z (8 months ago)
- Last Synced: 2024-04-13T20:27:09.950Z (7 months ago)
- Topics: javascript, rxjs
- Language: TypeScript
- Homepage: https://rxjs.dev
- Size: 120 MB
- Stars: 30,150
- Watchers: 451
- Forks: 2,986
- Open Issues: 261
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-nodejs-cn - RxJS - 用于转换、组合和查询各种类型数据的函数式响应式库 (包 / 函数式编程)
- awesome-nodejs - RxJS - Functional reactive library for transforming, composing, and querying various kinds of data. ![](https://img.shields.io/github/stars/reactivex/rxjs.svg?style=social&label=Star) (Repository / Functional programming)
- awesome-nodejs-cn - RxJS - **star:30372** 用于转换、组合和查询各种数据的响应式函数编程库 ![star > 2000][Awesome] (包 / 函数式编程)
- awesome-nodejs - RxJS - 用于转换、组合和查询各种数据的函数式响应式库。 ![](https://img.shields.io/github/stars/reactivex/rxjs.svg?style=social&label=Star) (GIT 仓库 / 函数式编程)
- awesome-nodejs - RxJS - Functional reactive library for transforming, composing, and querying various kinds of data. (Packages / Functional programming)
- awesome-node - RxJS - Functional reactive library for transforming, composing, and querying various kinds of data. (Packages / Functional programming)
- awesome-nodejs-cn - RxJS - 用于转换、组合和查询各种数据的函数式响应式库. (目录 / 函数式编程)
README
# RxJS: Reactive Extensions For JavaScript
![CI](https://github.com/reactivex/rxjs/workflows/CI/badge.svg)
[![npm version](https://badge.fury.io/js/rxjs.svg)](http://badge.fury.io/js/rxjs)
[![Join the chat at https://gitter.im/Reactive-Extensions/RxJS](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Reactive-Extensions/RxJS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)# RxJS 8 Monorepo
Look for RxJS and related packages under the [/packages](/packages/) directory. Applications like the [rxjs.dev](https://rxjs.dev) documentation site are under the [/apps](/apps/) directory.
[Apache 2.0 License](LICENSE.txt)
- [Code of Conduct](CODE_OF_CONDUCT.md)
- [Contribution Guidelines](CONTRIBUTING.md)
- [Maintainer Guidelines](apps/rxjs.dev/content/maintainer-guidelines.md)
- [API Documentation](https://rxjs.dev/)Reactive Extensions Library for JavaScript. This is a rewrite of [Reactive-Extensions/RxJS](https://github.com/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](https://github.com/ReactiveX/rxjs/commits/master) - This is all of the current work, which is against v8 of RxJS right now
- [7.x](https://github.com/ReactiveX/rxjs/tree/7.x) - This is the branch for version 7.X
- [6.x](https://github.com/ReactiveX/rxjs/tree/6.x) - This is the branch for version 6.XMost 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](CODE_OF_CONDUCT.md). Much like traffic laws, ignorance doesn't grant you immunity.
## Development
Because of [this issue](https://github.com/npm/rfcs/issues/287#issuecomment-1727960500) 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