Redux FAQ: Miscellaneous
  • References/JavaScript/Redux/Faq

Redux FAQ: Miscellaneous Table of Contents

2025-01-10 15:47:30
Redux FAQ: React Redux
  • References/JavaScript/Redux/Faq

Redux FAQ: React Redux Table of Contents

2025-01-10 15:47:30
Usage with React
  • References/JavaScript/Redux/Basics

Usage with React From the very beginning, we need to stress that Redux has no relation to React. You can write Redux apps with React, Angular

2025-01-10 15:47:30
Reusing Reducer Logic
  • References/JavaScript/Redux/Recipes

Reusing Reducer Logic As an application grows, common patterns in reducer logic will start to emerge. You may find several parts of your reducer

2025-01-10 15:47:30
Isolating Redux Sub-Apps
  • References/JavaScript/Redux/Recipes

Isolating Redux Sub-Apps Consider the case of a “big” app (contained in a

2025-01-10 15:47:30
Prerequisite Reducer Concepts
  • References/JavaScript/Redux/Recipes

Prerequisite Reducer Concepts As described in Reducers, a Redux reducer function:

2025-01-10 15:47:30
Prior Art
  • References/JavaScript/Redux/Introduction

Prior Art Redux has a mixed heritage. It is similar to some patterns and technologies, but is also different from them in important ways. We'll

2025-01-10 15:47:30
Store#replaceReducer()
  • References/JavaScript/Redux/Api

replaceReducer(nextReducer) Replaces the

2025-01-10 15:47:30
Implementing Undo History
  • References/JavaScript/Redux/Recipes

Implementing Undo History Building an Undo and Redo functionality into an app has traditionally required conscious effort from the developer

2025-01-10 15:47:30
Using Object Spread Operator
  • References/JavaScript/Redux/Recipes

Using Object Spread Operator Since one of the core tenets of Redux is to never mutate state, you'll often find yourself using

2025-01-10 15:47:30