ReactJS / Redux Tutorial - #6 Redux Middleware

preview_player
Показать описание
Redux allows you to apply Middleware and thus hook into your State Flow. This video show how to use Redux Middleware.

This video is Part of the ReactJS / Redux Basics Series.

Рекомендации по теме
Комментарии
Автор

from udemy to here on youtube, I'm following your content everywhere . You have a very good teaching skills. Thanks.

onkarjadhav
Автор

I have been working in react for last 4 months at work and your videos are helping me out so much. Thanks man!

kngydoteth
Автор

Am I the only one who thinks this is madness? Great tutorial btw :) thanks!

alien
Автор

Wow Seth Rogen is really good @ programming. Nice tutorial

ishandiablo
Автор

New to Redux, this was very helpful. Thank you!

sharpstevengg
Автор

"It could be different, but it isn't!"... the story of being a javascript developer

waveFunction
Автор

That tutorial created two years ago, but still staying amazing!Thanks a lot!

maginbergCSGO
Автор

Won't say your tutorial are best because that's obvious ;-)

I have used Angular 1 and learning React from you, have to say React does require more code but while coding React I learnt more JavaScript (useful stuff) while in Angular it was all Angular way and nothing I learnt can be used outside Angular.

sanjeevakaalex
Автор

One of the most obvious video lessons. Thanks for videos, thanks you!

TheMisterhomer
Автор

excellent tutorial....I am starting to understand redux a lot better..!! :) Thanks

sohammondal
Автор

I noticed at 8.26 that the logger coming from redux-logger fires after the store is updated. So does it mean that the place of the middleware would be between store and view/app in that scheme?

nchecker
Автор

Use 'logger' instead of 'logger()' in redux-logger v3

sudarshankj
Автор

If for some reason I want to make alternative design of middleware. Does pattern `(store, next) => action` eligible to replace original one or next should be passed only with currying. The question is why next passed in Redux like `store => next => action` instead of `(store, next) => action`.

stasstars
Автор

is CombineReducers following a Decorator or Pipeline or Facade pattern?

turinreza
Автор

Great tutorial, but it's really hard to follow up with the syntax, let alone configuring the webpack. Also, Max, your Redux code isn't on GitHub. It would be great to clone the whole thing and try to run it on my mac. Thanks.

armelchiza
Автор

A quick comment: when ran npm install redux-logger --save, I encountered errors when using the logger function from that package. I believe this is because at the time of this writing, it installs redux-logger 3.0. If you uninstall and use the version from the tutorial (2.6.1), problem goes away.

lenerdenator
Автор

How can I create a store without passing in the initial data(an empty obj in this example) ? I would like to pass only the reducers and middle-ware. How can I do it? Thanks

Bigdaddy
Автор

Thank you for your lessons. Your videos are great and very helpfull!)

natali
Автор

that my logger... felt like i'm watching Inception
5:18

Mr-Multiplayer
Автор

Technology shelf life is very short
their is a change in the way passing logger to middle-ware

import { applyMiddleware, createStore } from 'redux';

// Logger with default options
import logger from 'redux-logger'

const store = createStore(
reducer,
applyMiddleware(logger)
)

mohdnazir