DEV Community

Discussion on: React Query and management of server state

Collapse
 
lupi410 profile image
LV4

Great article! In my current job we've already implemented react-query on a new project and we loved it. But our main product is a bigger one that's been developed using react-redux with redux-thunks & redux-actions and it's strongly coupled to our analytics management service (through middlewares).
I'm thinking that maybe we could migrate from redux to react-query, but I could not find any info about react-query with middlewares to send analytics data.

🤔Do you have any ideas? How would you implement that?
Thanks!

Collapse
 
ivan_jrmc profile image
Ivan Jeremic

Take a look at Recoiljs this is exactly what you need

Collapse
 
lupi410 profile image
LV4

I will, thank you!