All Projects → monix → Monix

monix / Monix

Licence: apache-2.0
Asynchronous, Reactive Programming for Scala and Scala.js.

Programming Languages

scala
5932 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Monix

Sup
Composable, purely functional healthchecks in Scala.
Stars: ✭ 138 (-92.41%)
Mutual labels:  typelevel, cats, functional-programming, fp
Pfps Shopping Cart
🛒 The Shopping Cart application developed in the book "Practical FP in Scala: A hands-on approach"
Stars: ✭ 262 (-85.6%)
Mutual labels:  cats, functional-programming, fp
tradeio
A disciplined way to purely functional domain models in Scala
Stars: ✭ 19 (-98.96%)
Mutual labels:  cats, fp, cats-effect
Test State
Scala Test-State.
Stars: ✭ 119 (-93.46%)
Mutual labels:  cats, functional-programming, fp
scala-functional-programming-tutorial
Functional Programming in Scala Tutorial
Stars: ✭ 23 (-98.74%)
Mutual labels:  cats, fp, cats-effect
Rx.Http
A reactive way to make HTTP Request in .NET Core 🚀
Stars: ✭ 62 (-96.59%)
Mutual labels:  reactivex, reactive-streams, reactive-programming
Cats Infographic
typeclass diagram for cats
Stars: ✭ 403 (-77.84%)
Mutual labels:  typelevel, cats, fp
tutorials
🎥 Source code of the examples shown in the video tutorials
Stars: ✭ 18 (-99.01%)
Mutual labels:  cats, fp, cats-effect
Stm4cats
STM monad for cats-effect
Stars: ✭ 35 (-98.08%)
Mutual labels:  cats, functional-programming, fp
Frameless
Expressive types for Spark.
Stars: ✭ 717 (-60.58%)
Mutual labels:  typelevel, functional-programming, fp
Monocle
Optics library for Scala
Stars: ✭ 1,357 (-25.4%)
Mutual labels:  typelevel, cats, functional-programming
Flutter validation login form bloc pattern rxdart
[Functional reactive programming (FRP)]💧 💧 💧 [Pure RxDart] Validation login form by using the BLoC pattern with RxDart - A new Flutter project featuring a faked authentication interface to demonstrate validation. Implemented with BloC pattern.
Stars: ✭ 45 (-97.53%)
Mutual labels:  reactive-programming, reactive-streams, reactivex
mongo-images
Ever wonder how you can create a full stack reactive application that also saves images? Well look no further! We've got Spring Webflux, Reactive Mongo Streams with GridFS, and Angular5!
Stars: ✭ 12 (-99.34%)
Mutual labels:  reactivex, reactive-streams, reactive-programming
fs2-ssh
A wrapper around Apache SSHD targeting cats-effect and fs2
Stars: ✭ 36 (-98.02%)
Mutual labels:  cats, fp, cats-effect
pfps-examples
🏮 Standalone examples shown in the book "Practical FP in Scala: A hands-on approach"
Stars: ✭ 167 (-90.82%)
Mutual labels:  cats, fp, cats-effect
Shapeless
Generic programming for Scala
Stars: ✭ 3,207 (+76.31%)
Mutual labels:  typelevel, functional-programming, fp
flutter-form-with-validation-BLOC
This form and validation functions are created by using the BLOC pattern with RxDart instead of using StatefulWidget
Stars: ✭ 63 (-96.54%)
Mutual labels:  reactivex, reactive-streams, reactive-programming
typelevel-stack.g8
📚 Unofficial Giter8 template for the Typelevel Stack (Http4s / Doobie / Circe / Cats Effect / Fs2) based on Cats v1.x.x
Stars: ✭ 63 (-96.54%)
Mutual labels:  cats, typelevel, cats-effect
Bow
🏹 Bow is a cross-platform library for Typed Functional Programming in Swift
Stars: ✭ 538 (-70.42%)
Mutual labels:  reactive-programming, functional-programming, fp
Rxdownloader
- Reactive Extension Library for Android to download files
Stars: ✭ 40 (-97.8%)
Mutual labels:  reactive-programming, reactive-streams, reactivex

Monix

Asynchronous, Reactive Programming for Scala and Scala.js.

monix Scala version support

Build Gitter Discord

Overview

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:

  • exposes the kick-ass Observable, Iterant, Task, IO[E, A], and Coeval data types, along with all the support they need
  • modular, split into multiple sub-projects, only use what you need
  • designed for true asynchronicity, running on both the JVM and Scala.js
  • excellent test coverage, code quality, and API documentation as a primary project policy

Usage

Library dependency (sbt)

For the stable release (compatible with Cats, and Cats-Effect 2.x):

libraryDependencies += "io.monix" %% "monix" % "3.4.0"

Sub-projects

Monix 3.x is modular by design. See the sub-modules graph:

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-Effect
  • monix-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-Effect
  • monix provides all of the above

Documentation

See:

API Documentation:

(contributions are welcome)

Related:

Contributing

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:

Adopters

Here's a (non-exhaustive) list of companies that use Monix in production. Don't see yours? Submit a PR ❤️

License

All code in this repository is licensed under the Apache License, Version 2.0. See LICENCE.txt.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].