Socket
Socket
Sign inDemoInstall

refract-redux-rxjs

Package Overview
Dependencies
5
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    refract-redux-rxjs

Refract bindings for Redux with RxJS: harness the power of reactive programming to supercharge your components!


Version published
Weekly downloads
53
decreased by-38.37%
Maintainers
1
Created
Weekly downloads
 

Readme

Source


Handle your component effects and side-effects in a clear and declarative fashion
by using asynchronous data streams (reactive programming).


Why? · Install · The gist · Learn · Contribute · Discuss


Library size MIT License


  • :bowling: Decentralised: attach effects and side-effects to your components, for better code splitting results
  • :sunrise: Gradual: use on an existing component today, throughout your app tomorrow
  • :rocket: Reactive: leverage the power and benefits of reactive programming
  • :floppy_disk: Tiny: less than 2Kb minified and gzipped
  • :pencil: Typed: written in TypeScript, fully typed integrations
  • :zap: Universal: supports React, React Native, Inferno and Preact

Refract makes reactive programming possible in React, React Native, Preact and Inferno, with only a single higher-order component or a single hook! You can choose to start using a tiny bit of reactive programming, or go full reactive. Refract allows you to:

We also provide a Redux integration, which can serve as a template for integrations with other libraries. With a single HoC, you can fully replace libraries like recompose, redux-observable, and react-redux to name a few!

Why?

Component-based architecture and functional programming have become an increasingly popular approach for building UIs. They help make apps more predictable, more testable, and more maintainable.

However, our apps don't exist in a vacuum! They need to handle state, make network requests, handle data persistence, log analytics, deal with changing time, and so on. Any non-trivial app has to handle any number of these effects. Wouldn't it be nice to cleanly separate them from our apps?

Refract solves this problem for you, by harnessing the power of reactive programming. For an in-depth introduction, head to Why Refract.

Installation

npm install --save refract-redux-rxjs

Refract is available for a number of reactive programming libraries. For each library, a Refract integration is available for React, Inferno, Preact and Redux.

Available packages:

ReactInfernoPreactRedux
Callbagrefract-callbagrefract-inferno-callbagrefract-preact-callbagrefract-redux-callbag
Mostrefract-mostrefract-inferno-mostrefract-preact-mostrefract-redux-most
RxJSrefract-rxjsrefract-inferno-rxjsrefract-preact-rxjsrefract-redux-rxjs
xstreamrefract-xstreamrefract-inferno-xstreamrefract-preact-xstreamrefract-redux-xstream

The Gist

import { compose, createStore } from 'redux'
import { refractEnhancer } from 'refract-redux-rxjs'

const reducers = combineReducers({
    username: (state, action) => {
        if (action.type === 'USERNAME') {
            return action.payload
        }

        return state
    }
})
const store = createStore(reducers, {}, compose(refractEnhancer()))

const usernameActions$ = store.observe('USERNAME')
const username$ = store.observe(state => state.username)

Store enhancer

The Refract store enhancer adds an observe method which takes a single argument (action type or store selector) and returns an observable. Read observing redux for more details.

Learn Refract

Documentation

Documentation is available at refract.js.org. We aim to provide a helpful and thorough documentation: all documentation files are located on this repo and we welcome any pull request helping us achieve that goal.

Examples

We maintain and will grow over time a set of examples to illustrate the potential of Refract, as well as providing reactive programming examples: refract.js.org/examples.

Examples are illustrative and not the idiomatic way to use Refract. Each example is available for the four reactive libraries we support (RxJS, xstream, Most and Callbag), and we provide links to run the code live on codesandbox.io. All examples are hosted on this repo, and we welcome pull requests helping us maintaining them.

Contributing

We welcome many forms of contribution from anyone who wishes to get involved.

Before getting started, please read through our contributing guidelines and code of conduct.

The Refract logo is available in the Logo directory.

License

Refract is available under the MIT license.

Discuss

Everyone is welcome to join our discussion channel - #refract on the Reactiflux Discord server.

Talks

Articles

Keywords

FAQs

Last updated on 02 Sep 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc