# redux-tutorial **Repository Path**: mirrors_gaearon/redux-tutorial ## Basic Information - **Project Name**: redux-tutorial - **Description**: Learn how to use redux step by step - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README redux-tutorial ========================= This repository contains a step by step tutorial to get a grasp about flux and most particularly about [Redux](https://github.com/rackt/redux). The official and very exhaustive Redux documentation is available [here](http://redux.js.org/) and should be your number One source of truth regarding Redux. The present tutorial only will offer you an introduction to flux concepts through Redux use but for further or more detailed info, please refer to the Redux documentation. ### Prerequisites It is required for you to know a bit of ES6 and ES7 (Object Spread) to understand correctly some of the examples given in this repo. Be also aware that this tutorial targets redux 3.0.2 and react-redux 4.0.0. ### Clone the repository `git clone https://github.com/happypoulp/redux-tutorial.git` ### Move into repository `cd redux-tutorial` ### Install dependencies `npm install` ### Browse the tutorial This tutorial is split into js file to be read as is and they are numbered in the preferred order of browsing. Start with the first tutorial: [Introduction](00_introduction.js) ### Run an example Being real js files, each example can be run to verify that it works as intended or to do your own experiments: `npm run example 01_simple-action-creator.js` Enjoy!