Definition

Redux is a predictable state container for JavaScript apps from Redux.org

Version >= 5.x

NGRX logo evolution


            # selector before
            store.select('count')
            # selector after
            store.pipe(select('count'))

            # ofType before
            @Effect() myActions$ = this.action$
                .ofType('LOGIN')
                ...
            # ofType after
            @Effect() authActions$ = this.action$.pipe(
                ofType('LOGIN'),
                ...
            )