Giter Club home page Giter Club logo

rxjs-collection's Introduction

image Awesome RxJS Awesome

A collection of awesome RxJS tools, frameworks and resources

Getting Started

Hot vs Cold Observables

Paul Taylor (RxJS 5 Contributor) with the best explanation of Hot & Cold Observables yet. ReactiveX/rxjs#1121 (comment)

... "cold" and "hot" don't refer to unicast vs. multicast, they refer to the state of the computation. An Observable represents an asynchronous computation (aka, it's a function that can return multiple values between now and infinity).

"Cold" Observables are just like functions which haven't been called (subscribed to) yet. Each time you call it (aka, subscribe to it), you're re-running whatever calculation the Observable performs.

"Hot" Observables are just regular cold Observables that you've shoved a Subject between you and the cold Observable source. When you subscribe to it, you're really subscribing to the Subject over and over. Subjects can have any number of Observers (just like EventEmitter, etc.), but the original cold source has only one Observer (the Subject that's sitting between you and the source).

RxJS 5 vs RxJS 4

ReactiveX/RxJS - (RxJS 5)

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.

Reactive-Extensions/RxJS - (RxJS 4)

...is a set of libraries to compose asynchronous and event-based programs using observable collections and Array#extras style composition in JavaScript

Libraries Built with RxJS

  • arkverse/lell - Reactive state, no boilerplate, just init and subscribe
  • Cycle.js - A fully reactive JavaScript framework for Human-Computer Interaction.
  • ds300/derivablesjs - Functional Reactive State for JavaScript and TypeScript
  • WebRx - The Browser-based MVVM-Framework for ReactiveX-powered Single Page Applications.
  • Angular2 - Angular is a development platform for building mobile and desktop applications
  • garbles/yolk - 🥚 A library for building asynchronous user interfaces.
  • bcoop713/routerx - A Router for RxJS and Cycle.js applcations
  • ngrx/store - RxJS powered state management inspired by Redux for Angular2

Talks

Articles

Testing

References

People

Community

React & RxJS

Angular2 & RxJS

Other Reactive Programming Libraries

  • baconjs/bacon.js - FRP (functional reactive programming) library for Javascript.
  • pozadi/kefir - FRP library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory consumption.
  • [Highland.js] (http://highlandjs.org/) - Re-thinking the JavaScript utility belt, Highland manages synchronous and asynchronous code easily, using nothing more than standard JavaScript and Node-like Streams.
  • cujojs/most - high performance FRP library.

License

CC0

rxjs-collection's People

Contributors

ichpuchtli avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.