Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Rxswift | 23,574 | 2,709 | 6 days ago | 75 | January 14, 2022 | 30 | mit | Swift | ||
Reactive Programming in Swift | ||||||||||
Reactiveui | 7,647 | 68 | 174 | 5 days ago | 278 | July 11, 2023 | 80 | mit | C# | |
An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application. | ||||||||||
Fish Redux | 7,242 | 22 | 3 | 2 years ago | 27 | March 09, 2021 | 160 | apache-2.0 | Dart | |
An assembled flutter application framework. | ||||||||||
Translations | 6,612 | 4 months ago | 27 | other | ||||||
🐼 Chinese translations for classic IT resources | ||||||||||
Bacon.js | 6,443 | 8,696 | 268 | 3 months ago | 222 | November 03, 2020 | 90 | mit | TypeScript | |
Functional reactive programming library for TypeScript and JavaScript | ||||||||||
Marble | 2,081 | 9 | 21 | 7 months ago | 159 | March 06, 2023 | 5 | mit | TypeScript | |
Marble.js - functional reactive Node.js framework for building server-side applications, based on TypeScript and RxJS. | ||||||||||
Monix | 1,907 | 56 | 11 days ago | 21 | May 07, 2022 | 153 | apache-2.0 | Scala | ||
Asynchronous, Reactive Programming for Scala and Scala.js. | ||||||||||
Kefir | 1,828 | 9,210 | 262 | 6 months ago | 86 | November 28, 2020 | 38 | mit | JavaScript | |
A Reactive Programming library for JavaScript | ||||||||||
Flyd | 1,526 | 189 | 129 | 2 years ago | 34 | July 11, 2018 | 49 | mit | JavaScript | |
The minimalistic but powerful, modular, functional reactive programming library in JavaScript. | ||||||||||
Learnrx | 1,378 | 4 years ago | 40 | JavaScript | ||||||
A series of interactive exercises for learning Microsoft's Reactive Extensions Library for Javascript. |
Asynchronous, Reactive Programming for Scala and Scala.js.
Monix is a high-performance Scala / Scala.js library for composing asynchronous, event-based programs.
It started as a proper implementation of ReactiveX, with stronger functional programming influences and designed from the ground up for back-pressure and made to interact cleanly with Scala's standard library, compatible out-of-the-box with the Reactive Streams protocol. It then expanded to include abstractions for suspending side effects and for resource handling, and is one of the parents and implementors of Cats Effect.
A Typelevel project, Monix proudly exemplifies pure, typeful, functional programming in Scala, while being pragmatic, and making no compromise on performance.
Highlights:
For the stable release (compatible with Cats, and Cats-Effect 2.x):
libraryDependencies += "io.monix" %% "monix" % "3.4.1"
Monix 3.x is modular by design. See the sub-modules graph:
You can pick and choose:
monix-execution
exposes the low-level execution environment, or
more precisely Scheduler
, Cancelable
, Atomic
, Local
, CancelableFuture
and Future
based abstractions from monix-catnap
.monix-catnap
exposes pure abstractions built on top of
the Cats-Effect type classes;
depends on monix-execution
, Cats 1.x and Cats-Effectmonix-eval
exposes Task
, Coeval
;
depends on monix-execution
monix-reactive
exposes Observable
for modeling reactive,
push-based streams with back-pressure; depends on monix-eval
monix-tail
exposes Iterant
streams for purely functional pull
based streaming; depends on monix-eval
and makes heavy use of
Cats-Effectmonix
provides all of the aboveSee:
API Documentation:
Related:
The Monix project welcomes contributions from anybody wishing to participate. You must license all code or documentation provided with the Apache License 2.0, see LICENSE.txt.
You must follow the Scala Code of Conduct when discussing Monix on GitHub, Gitter channel, or other venues.
Feel free to open an issue if you notice a bug, have an idea for a feature, or have a question about the code. Pull requests are also gladly accepted. For more information, check out the contributor guide.
If you'd like to donate in order to help with ongoing maintenance:
Here's a (non-exhaustive) list of companies that use Monix in production. Don't see yours? Submit a PR
All code in this repository is licensed under the Apache License, Version 2.0. See LICENSE.