Aaron Roberts

Results 77 comments of Aaron Roberts

If we wanted to go react I'd be willing to help - I would recommend it as it is pretty much the leading framework today.

1. I think that having IObservable isn't necessarily a bad thing but it should be implemented as an optional feature similar to how [redux is](https://github.com/reactjs/redux/blob/master/src/createStore.js#L203). Or possibly a middleware? 2....

@cmeeren and @dcolthorp Thanks for your feedback. I'm sure a lot of dot net developers feel the same way you do - a dot net library should feel like dot...

@cmeeren nice work simplifying what we have talked about. I like it. I have a question about your reducer example that you've given. In the root reducer Execute method you...

@GuillaumeSalles I think you have touched on one of the main points of concern that I have with the way the events / observables are being implemented or proposed to...

I don't understand what this does that a middleware couldn't do. Middleware receive all actions and have the ability to do something with them before they reach the store. Middleware...

I should add that I only call this a bug because it differs from the current implementation. The behavior that redux.net has makes more sense than redux IMO and there...

@cmeeren I think the way it works for redux is that the smaller reducers can provide their initial state if one is not provided to them. You could call ```js...

@cmeeren I think we are saying the same thing, but Imagine though that you have 5 or 6 root states that are all composed of objects with 5 or 6...