redux-scuttlebutt icon indicating copy to clipboard operation
redux-scuttlebutt copied to clipboard

Distributed replicated redux store

Results 6 redux-scuttlebutt issues
Sort by recently updated
recently updated
newest added

We are already using pusher client in our app and I am wondering if we can use this library with our existing socket connection from pusher?

I have a React app running on `create-react-app` and I'm trying to use `redux-scuttlebutt` to sync different clients with each other. In my `index.js` on the client side I have...

* When `state === nextReducer(state, action)` (does not change at all in response to an action), the action is considered "not supported" * A peer should not replay actions it...

Add an optional scope key to `action.meta`, don't gossip those actions to peers unless they've specifically requested a subscription to that scope. * This can all be done in the...

enhancement

Currently `redux-scuttlebutt` remembers all actions that have ever been dispatched, ever. This is not feasible with long-running applications which dispatch many actions. We should emit a `@@scuttlebutt/COMPACTION` action occasionally[1] which...

enhancement

Hi, Thanks for publishing this. I’m very interested in the topic of peer-to-peer store synchronization and I was planning on building a library for that on top of [hyperlog](https://github.com/mafintosh/hyperlog) or...

question