Reducing Boilerplate
  • References/JavaScript/Redux/Recipes

Reducing Boilerplate Redux is in part inspired by Flux, and the most

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

Introduction Motivation

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

combineReducers(reducers) As your app grows more complex, you'll want to split your

2025-01-10 15:47:30
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
Usage with React Router
  • References/JavaScript/Redux/Advanced

Usage with React Router So you want to do routing with your Redux app. You can use it with

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
Recipes
  • References/JavaScript/Redux/Recipes

Recipes These are some use cases and code snippets to get you started with Redux in a real app. They assume you understand the topics in

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
Examples
  • References/JavaScript/Redux/Introduction

Examples Redux is distributed with a few examples in its

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