JSPM

redux-camelizer

0.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q19938F
  • License MIT

camelize middleware for Redux

Package Exports

  • redux-camelizer

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (redux-camelizer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

redux-camelizer

Camlize middleware for Redux

Instllation

npm install redux-camelizer --save

Usage example

import { createStore, applyMiddleware, combineReducers } from 'redux';
import createCamelizer from 'redux-camelizer';
import reducers from './reducers';

const reducer = combineReducers(reducers);
const camelizer = createCamelizer(['FETCH_SUCCESS'])

const store = createStore(reducer applyMiddleware(camelizer));