What are some problems with Redux?

This page summarizes the projects mentioned and recommended in the original post on /r/reduxjs

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • redux-toolkit

    The official, opinionated, batteries-included toolset for efficient Redux development

    Honestly, before Redux Toolkit and Redux RTK Query, there were a lot of pain points with Redux.

  • redux-persist

    persist and rehydrate a redux store

    For storage layer issues specifically, I'll direct you to redux-persist. It's been a perfect solution for almost all of my persisting needs over the years.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

  • redux-undo

    :recycle: higher order reducer to add undo/redo functionality to redux state containers

    As for undoing, my personal opinion is that it is never required. After all, undoing an action is really just dispatching a new action with the information to repopulate which you can compute on the fly. An added benefit of this method is your action history is always moving forward, never backwards. That being said, this redux-undo library might help. Note, I have never used it, but it does come back to my point that middleware are usually the solution.

  • reselect

    Selector library for Redux

    We've completely revamped the Reselect types in the last few weeks and added new cache size options to its API - see https://github.com/reduxjs/reselect/releases

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts