File: README.md

package info (click to toggle)
node-redux 4.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 9,156 kB
  • sloc: javascript: 7,634; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 600 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
id: basic-tutorial
title: Basic Tutorial: Intro
sidebar_label: Basic Tutorial: Intro
hide_title: true
---

# Basics

Don't be fooled by all the fancy talk about reducers, middleware, store enhancers—Redux is incredibly simple. If you've ever built a Flux application, you will feel right at home. If you're new to Flux, it's easy too!

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

- [Actions](Actions.md)
- [Reducers](Reducers.md)
- [Store](Store.md)
- [Data Flow](DataFlow.md)
- [Usage with React](UsageWithReact.md)
- [Example: Todo List](ExampleTodoList.md)