Writing Tests Because most of the Redux code you write are functions, and many of them are pure, they are easy to test without mocking.
Basic Reducer Structure and State Shape Basic Reducer Structure First and foremost, it's important to understand
Redux FAQ: General Table of Contents
Actions First, let's define some actions. Actions are payloads of information that send data
Examples Redux is distributed with a few examples in its
Glossary This is a glossary of the core terms in Redux, along with their type signatures. The types are documented using
Motivation As the requirements for JavaScript single-page applications have become increasingly complicated, our code must manage more
Immutable Update Patterns The articles listed in
Initializing State There are two main ways to initialize state for your application. The createStore method can accept an optional
Structuring Reducers At its core, Redux is really a fairly simple design pattern: all your "write" logic goes into a single function, and the
Page 5 of 7