DEV Community

Discussion on: React Hooks - useReducer

Collapse
 
reactifystudio profile image
Reactify

So can I ditch redux and use this stuff alone?

Collapse
 
techcheck profile image
Andrew • Edited

Good question. Redux is great for combining multiple reducers. (and combining all the dispatched actions to work together). It's also good for injecting middleware for developer tools and performing asynchronous tasks (fetch data, etc..) inside actions. I might have to add an edit to the blog 🤔👍.

Thread Thread
 
reactifystudio profile image
Reactify

What others do I need I hear of thunk redux and such.but I don't know much about it. I've used context API alone

Thread Thread
 
reactifystudio profile image
Reactify

I see other stuff like redux thunk. Can you advise me on everything I need for redux. I'll have 100 code days in Frontend (react and Firebase)
.

Collapse
 
jotsarupsingh profile image
jotsarup-singh

@reactifystudio it can be used in small medium size projects but for large application its difficult to manage.

Thread Thread
 
reactifystudio profile image
Reactify

Okay thanks. And which other tools you use in React?.