reselect

Selector library for Redux (by reduxjs)

Reselect Alternatives

Similar projects and alternatives to reselect

  1. Next.js

    2,360 reselect VS Next.js

    The React Framework

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.

    SurveyJS logo
  3. React

    1,946 reselect VS React

    The library for web and native user interfaces.

  4. TypeScript

    1,433 reselect VS TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  5. jest

    526 reselect VS jest

    Delightful JavaScript Testing.

  6. axios

    480 reselect VS axios

    Promise based HTTP client for the browser and node.js

  7. redux-toolkit

    308 reselect VS redux-toolkit

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

  8. redux

    305 reselect VS redux

    A JS library for predictable global state management

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. react-hook-form

    247 reselect VS react-hook-form

    📋 React Hooks for form state management and validation (Web + React Native)

  11. antd

    235 reselect VS antd

    An enterprise-class UI design language and React UI library

  12. Sass

    224 reselect VS Sass

    Sass makes CSS fun!

  13. moment

    102 reselect VS moment

    Parse, validate, manipulate, and display dates in javascript.

  14. react-redux

    86 reselect VS react-redux

    Official React bindings for Redux

  15. ramda

    85 reselect VS ramda

    :ram: Practical functional Javascript

  16. i18next

    69 reselect VS i18next

    i18next: learn once - translate everywhere

  17. redux-saga

    48 reselect VS redux-saga

    An alternative side effect model for Redux apps

  18. MobX

    53 reselect VS MobX

    Simple, scalable state management.

  19. redux-thunk

    35 reselect VS redux-thunk

    Thunk middleware for Redux

  20. redux-persist

    33 reselect VS redux-persist

    persist and rehydrate a redux store

  21. awesome-material-ui

    A curated list of Material-UI resources and related projects. The main idea is that everyone can contribute here, so we can have a central repository of informations about Material-UI that we keep up-to-date

  22. react-ga

    9 reselect VS react-ga

    Discontinued React Google Analytics Module

  23. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better reselect alternative or higher similarity.

reselect discussion

Log in or Post with

reselect reviews and mentions

Posts with mentions or reviews of reselect. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-05.
  • Redux Toolkit 2.0: new features, faster perf, smaller bundle sizes (plus major versions for all Redux family packages!)
    7 projects | /r/reactjs | 5 Dec 2023
  • Redux Toolkit 2.0: new features, faster perf, smaller bundle sizes, and more
    6 projects | news.ycombinator.com | 4 Dec 2023
    - Throws better errors in an RSC environment

    - https://github.com/reduxjs/react-redux/releases/tag/v9.0.0

    ## Reselect 5.0:

    - Switches to a new `weakMapMemoize` memoizer as default

    - Renames `defaultMemoize` to `lruMemoize`

    - Allows passing memoizer options direct to `createSelector`

    - Many TS improvements

    - https://github.com/reduxjs/reselect/releases/tag/v5.0.1

    ## Redux Thunk 3.0:

    - Drops the default export and switches to named exports ( `{thunk, withExtraArgument}` )

    - https://github.com/reduxjs/redux-thunk/releases/tag/v3.1.0

    This has been a _huge_ year-long development effort!

    We're thrilled to get these improvements out. The tooling and bundle improvements will help all users, and we think the features and TS changes will improve the Redux dev experience significantly.

    Thank you SO MUCH to everyone who has contributed or helped test out the work!

    Please file bug reports for the inevitable issues that pop up post-release!

    but now I'm going off on a conf trip and going to take a very well-earned break from Redux work for December :)

  • 45 NPM Packages to Solve 16 React Problems
    22 projects | dev.to | 14 Nov 2023
    reselect -> For making faster queries to store.
  • Top 7 Libraries for Blazingly Fast ReactJS Applications
    6 projects | dev.to | 18 Aug 2023
    Reselect solves this problem by memorizing the values and only passing what’s necessary.
  • What's the benefit of Redux?
    1 project | /r/react | 20 Jul 2023
    In addition, diagnosing bugs in how data flowed through the application (where data originated from, how it was changed, etc.) was always super painful because I had to backtrack through selectors referencing selectors referencing selectors. And updating high-level selectors risked breaking something else down the line (even with 100% business logic coverage this was a problem). (This may be chalked up to improper usage of reselect, but I'm curious to hear your thoughts. Is this a common problem?)
  • 20 Essential Parts Of Any Large Scale React App
    15 projects | dev.to | 2 Jun 2023
    reselect : Selector library to optimize your store access
  • Revolutionize Your React App with Redux: A Beginner's Guide to Simplifying State Management(PART 2)
    3 projects | dev.to | 12 Apr 2023
    Reselect documentation:
  • What is memoization in React
    1 project | dev.to | 8 Mar 2023
    Applying memoization to TypeScript and ReactJS is relatively straightforward. There are several libraries available that provide memoization functionality, such as memoize function from Lodash, reselect or hooks from ReactJS. These libraries can be installed using NPM or Yarn and used in your TypeScript and ReactJS projects.
  • ThreeJS project wrapped in Redux for State Management
    1 project | /r/reduxjs | 12 Feb 2023
    Generally, all you would need is to have your redux store provider at the very top level of your application (You could also only wrap the components that you want to have this data available to). Then, any component rendered inside that provider can get access to the redux store. The suggested approach ever since hooks were released is to use `useSelector` and `useDispatch` within your component to get the state data that you need. Using a selector library like Reselect is prevalent and keeps your data selection tidy & handles memoization for you.
  • 20 Best Libraries and Tools for React Developers
    11 projects | dev.to | 25 Jan 2023
    Reselect is a library for creating memoized “selector” functions. Commonly used with Redux, to slice state and provide just the necessary subtree to a React component.
  • A note from our sponsor - Stream
    getstream.io | 11 Jul 2025
    Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure. Learn more →

Stats

Basic reselect repo stats
46
19,067
6.3
4 months ago

reduxjs/reselect is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of reselect is TypeScript.


Sponsored
JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
surveyjs.io

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?