DEV Community

Discussion on: Why I Stopped Using Redux

Collapse
 
pengeszikra profile image
Peter Vivo

Great post thx! I also stop using redux after hooks on playfield. I working on a quite complex SPA, around 14k line, python backend, high speed data visualisation. My simple view replace redux with useReducer, but never use useContext. Simple pass down state and dispatch capable actions. With this technic I remove useContext dependency and Component can be construct and testing independently. I like to use redux saga for handle complex async situation. So I use that with use-saga-reducer without redux boilerplate.