flux-capacitor-reduxify

0.2.0 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i flux-capacitor-reduxify

Weekly Downloads

1

Version

0.2.0

License

MIT

Last publish

Collaborators

  • andywer