Reading-Notes

Class 39 Summary:

Redux - Additional Topics :

What’s the best practice for “pre-loading” data into the store (on application start) in a Redux application?

When using a thunk/async action that dispatches the actual action, which do you export from your reducer?

Document the following Vocabulary Terms :

Term  
middleware software that enables one or more kinds of communication or connectivity between two or more applications or application components in a distributed network
thunk a subroutine used to inject a calculation into another subroutine. Thunks are primarily used to delay a calculation until its result is needed, or to insert operations at the beginning or end of the other subroutine

Redux Toolkit :

RTK Query :

Sources:

source1 source2 source3