Writing Tests
  • References/JavaScript/Redux/Recipes

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.

2025-01-10 15:47:30
Basic Reducer Structure and State Shape
  • References/JavaScript/Redux/Recipes

Basic Reducer Structure and State Shape Basic Reducer Structure First and foremost, it's important to understand

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

Redux FAQ: General Table of Contents

2025-01-10 15:47:30
Actions
  • References/JavaScript/Redux/Basics

Actions First, let's define some actions. Actions are payloads of information that send data

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

Examples Redux is distributed with a few examples in its

2025-01-10 15:47:30
Glossary
  • References/JavaScript/Redux/Glossary

Glossary This is a glossary of the core terms in Redux, along with their type signatures. The types are documented using

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

Motivation As the requirements for JavaScript single-page applications have become increasingly complicated, our code must manage more

2025-01-10 15:47:30
Immutable Update Patterns
  • References/JavaScript/Redux/Recipes

Immutable Update Patterns The articles listed in

2025-01-10 15:47:30
Initializing State
  • References/JavaScript/Redux/Recipes

Initializing State There are two main ways to initialize state for your application. The createStore method can accept an optional

2025-01-10 15:47:30
Structuring Reducers
  • References/JavaScript/Redux/Recipes

Structuring Reducers At its core, Redux is really a fairly simple design pattern: all your "write" logic goes into a single function, and the

2025-01-10 15:47:30