redux.md

July 16, 2021 ยท View on GitHub

Redux Back

redux

Redux is a predictable state container for JavaScript apps.

It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test.

  • Introduction

Installation

npm install redux --save

Basics

In this guide, we'll walk through the process of creating a simple Todo app.

  • Actions
  • Reducers
  • Store
  • Data Flow - Data Lifecycle in Redux
  • React + Redux

Contents

  1. 1Redux Back
  2. 1.1Installation
  3. 1.2Basics