-
Notifications
You must be signed in to change notification settings - Fork 1
/
it.web.redux-toolkit.txt
13 lines (10 loc) · 1.13 KB
/
it.web.redux-toolkit.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
The Redux Toolkit package is intended to be the standard way to write Redux logic.
It was originally created to help address three common concerns about Redux:
"Configuring a Redux store is too complicated"
"I have to add a lot of packages to get Redux to do anything useful"
"Redux requires too much boilerplate code"
We can't solve every use case, but in the spirit of create-react-app and apollo-boost, we can try to provide some tools that abstract over the setup process and handle the most common use cases, as well as include some useful utilities that will let the user simplify their application code.
This package is not intended to solve every possible concern about Redux, and is deliberately limited in scope.
It does not address concepts like "reusable encapsulated Redux modules", data fetching, folder or file structures, managing entity relationships in the store, and so on.
That said, these tools should be beneficial to all Redux users.
Whether you're a brand new Redux user setting up your first project, or an experienced user who wants to simplify an existing application, Redux Toolkit can help you make your Redux code better.