Home

Awesome

Redux CRUD

Looking for a new mantainer: See https://github.com/Versent/redux-crud/issues/77

Codeship Status for Versent/redux-crud

Redux CRUD is a convention driven way of building CRUD applications using Redux. After building several Flux applications we found that we always end up creating the same action types, actions and reducers for all our resources.

Redux CRUD gives you a standard set of:

Working with resources in Redux

When building an app you might have resources like users, posts and comments.

You'll probably end up with action types for them like:

And action creators like:

There's obvious repetition there. Redux CRUD aims to remove this boilerplate by providing strong conventions on naming and processing data.

Stores

Redux-crud provides two stores:

Docs

Actions

Reducers

Using with Redux

Tips

Testing

npm test

Example

You can see a basic example here