All Projects → gcanti → Fp Ts Rxjs

gcanti / Fp Ts Rxjs

Licence: mit
fp-ts bindings for RxJS

Programming Languages

typescript
32286 projects

Labels

Projects that are alternatives of or similar to Fp Ts Rxjs

Rxviz
Rx Visualizer - Animated playground for Rx Observables
Stars: ✭ 1,471 (+1006.02%)
Mutual labels:  rxjs
Rxios
A RxJS wrapper for axios
Stars: ✭ 119 (-10.53%)
Mutual labels:  rxjs
Ayanami
🍭 A better way to react with state
Stars: ✭ 129 (-3.01%)
Mutual labels:  rxjs
Blog
lizhonghui's blog
Stars: ✭ 109 (-18.05%)
Mutual labels:  rxjs
Cyclejs
A functional and reactive JavaScript framework for predictable code
Stars: ✭ 9,996 (+7415.79%)
Mutual labels:  rxjs
React Eva
Effects+View+Actions(React distributed state management solution with rxjs.)
Stars: ✭ 121 (-9.02%)
Mutual labels:  rxjs
Reactivedb
Reactive ORM for Lovefield
Stars: ✭ 102 (-23.31%)
Mutual labels:  rxjs
Angular Interview Questions
List of 300 Angular Interview Questions and answers
Stars: ✭ 2,264 (+1602.26%)
Mutual labels:  rxjs
Rxjs In Action
Code sample repository
Stars: ✭ 117 (-12.03%)
Mutual labels:  rxjs
Reactive Patterns Course
Contains the code for the RxJs & Reactive Patterns Angular Architecture Course
Stars: ✭ 127 (-4.51%)
Mutual labels:  rxjs
Bloc.js
A predictable state management library that helps implement the BLoC design pattern in JavaScript
Stars: ✭ 111 (-16.54%)
Mutual labels:  rxjs
Batcave
Batcave client is chat app built with Electron and Angular2, Socket.io with RxJS.
Stars: ✭ 114 (-14.29%)
Mutual labels:  rxjs
Reactivetradercloud
Real-time FX trading showcase by Adaptive.
Stars: ✭ 1,664 (+1151.13%)
Mutual labels:  rxjs
Rx React Container
Use RxJS in React components, via HOC or Hook
Stars: ✭ 105 (-21.05%)
Mutual labels:  rxjs
Frontend Hard Mode Interview
《前端内参》,有关于JavaScript、编程范式、设计模式、软件开发的艺术等大前端范畴内的知识分享,旨在帮助前端工程师们夯实技术基础以通过一线互联网企业技术面试。
Stars: ✭ 2,338 (+1657.89%)
Mutual labels:  rxjs
Store
Aurelia single state store based on RxJS
Stars: ✭ 103 (-22.56%)
Mutual labels:  rxjs
Angular Rpg
RPG game built with Typescript, Angular, ngrx/store and rxjs
Stars: ✭ 120 (-9.77%)
Mutual labels:  rxjs
Rx Book
xgrommx.github.io/rx-book
Stars: ✭ 1,660 (+1148.12%)
Mutual labels:  rxjs
Cyclejs.cn
The Cycle.js Chinese documentation website.
Stars: ✭ 132 (-0.75%)
Mutual labels:  rxjs
Rxjs Diagrams
React Components for visualising RxJS observables and operators
Stars: ✭ 126 (-5.26%)
Mutual labels:  rxjs

fp-ts bindings for rxjs

Implemented instances

  • Monad
  • Alternative
  • Filterable

Example

import { from } from 'rxjs'
import { observable } from 'fp-ts-rxjs/lib/Observable'

const fa = from([1, 2, 3])
const fb = observable.chain(fa, a => from([a, a + 1]))
// fb will emit 1, 2, 2, 3, 3, 4

TypeScript compatibility

The stable version is tested against TypeScript 3.1.3

rxjs compatibility

rxjs version fp-ts-rxjs version
[email protected] [email protected]
[email protected] [email protected]

Documentation

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].