reselect
recompose
reselect | recompose | |
---|---|---|
46 | 12 | |
19,028 | 14,850 | |
0.0% | - | |
9.3 | 1.7 | |
8 days ago | almost 2 years ago | |
TypeScript | JavaScript | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
reselect
- Redux Toolkit 2.0: new features, faster perf, smaller bundle sizes (plus major versions for all Redux family packages!)
-
Redux Toolkit 2.0: new features, faster perf, smaller bundle sizes, and more
- 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
reselect -> For making faster queries to store.
-
Top 7 Libraries for Blazingly Fast ReactJS Applications
Reselect solves this problem by memorizing the values and only passing what’s necessary.
-
What's the benefit of Redux?
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
reselect : Selector library to optimize your store access
-
Revolutionize Your React App with Redux: A Beginner's Guide to Simplifying State Management(PART 2)
Reselect documentation:
-
What is memoization in React
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
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
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.
recompose
-
I can't be the only one who prefers class components over functional components, right?
Maybe take a look at the recompose project. https://github.com/acdlite/recompose https://medium.zenika.com/react-hooks-my-introduction-81b15e6eff20
-
Functional programming in react?
A lot of stuff from functional programming are used in react. Hooks were basically recompose: https://github.com/acdlite/recompose
-
React HOC horror
For those curious this is the result of using recompose
-
How do I setState within React's recompose's lifecycle method?
I am using recompose in my React projecthttps://github.com/acdlite/recompose/
-
How to update the Redux store after Apollo GraphQL query returns
Should I dispatch a separate action like SELECT_LIST_ITEM in componentWillReceiveProps e.g (using recompose):
-
Should I start learning class based React
Along with classes you'll also gonna need to learn how people achieved composition before hooks. Namely higher order components. You may also want to checkout js library https://github.com/acdlite/recompose which was often used in tandem with higher order components.
-
Avoid high-order components hell in React
And in the end, you will need to compose your app with all that HOCs. For that, I like to use the Recompose library. It has other powerful uses, but for now we will use only the compose.
-
Advance React Topics to learn
Using libraries like recompose
-
Writing purely functional stateful components without hooks
I might look like an asshole, but that also can save you time on future work: recompose includes withState and many other HOCs
- Recompose for React
What are some alternatives?
Immer - Create the next immutable state by mutating the current one
react-redux - Official React bindings for Redux
use-context-selector - React useContextSelector hook in userland
mobx-react
redux-toolkit - The official, opinionated, batteries-included toolset for efficient Redux development
kea - Batteries Included State Management for React
react-controllables - Easily create controllable components
effector-react - Business logic with ease ☄️
fluxible - A pluggable container for universal flux applications.
redux-batched-subscribe - store enhancer for https://github.com/reactjs/redux which allows batching subscribe notifications.