0.2.0 • Published 8 years ago

flux-capacitor-reduxify v0.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

Flux Capacitor - Reduxify

JavaScript Style Guide

Small utility to turn your Flux Capacitor reducers into Redux reducers, so you can re-use your backend code in your frontend!

Usage

Here comes some sample code showing how to re-use your flux capacitor reducer in the frontend:

import reduxify from 'flux-capacitor-reduxify'
import { combineReducers } from 'redux'
import backendReducer from './path/to/my/backend/code'

// Note: backendReducer is supposed to take one collection only, not the whole database
// => backendReducer: (Collection, Event) => Changeset
const reduxReducer = reduxify(backendReducer)

const reduxRootReducer = combineReducers({ foo: reduxReducer })

Flux Capacitor

Find it here 👉 Flux Capacitor

License

Released under the terms of the MIT license.

0.2.0

8 years ago