Evan Schultz

Results 43 comments of Evan Schultz

@JPeer264 are you trying to provide an already configured store to the app? I usually use the `ngRedux.configureStore(rootReducer, initialState middleware, enhancers)` If you are trying to use createStore directly from...

@smatthews1999 @kuhlschrank @MonsieurMan the project is still alive, and I'm using it in a few different production level projects at work. It hasn't been abandoned - just been a matter...

Thanks for your support, I've been enjoying working on this. Wish I had more time to document things better. I'd be curious to hear about the types of projects /...

@AlainD- the v8 was an accidental publish. For Angular 5+, use v7 - it only works with Angular 5. v6 works with 4 or 5, and for the next while...

@Eymux just did a bump of v7.0.2 - no code changes, just gets it published under the right`@latest` tag on NPM. Also updated readme / changelog to hopefully clarify any...

Hrmm, this could be kind of interesting - but wondering if a middleware would be better suited - as results of dspatch will go through all middleware. That said, I...

@aminpaks If you want to work on a prototype, happy to review the PR. Some other questions/thoughts I'd have though is: * would the dispatch only fire when the observable...

This seems like a reasonable request. One way I've handled this before though is being able to use 'let' and having something like: ```ts A B ``` That said, I...

Also, there is `@select$` which lets you add on an observable to a selector. [Changelog Notes](https://github.com/angular-redux/store/blob/master/CHANGELOG.md#features-1) ```ts import { select$ } from 'angular-redux/store'; export const debounceAndTriple = obs$ => obs$...

Currently it would still need to be configured at the root component of that module. The `configureSubStore` currently does not accept a parameter for an initial state, although I don't...