Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More readable #129

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@ The official and very exhaustive Redux documentation is available [here](http://
It is required for you to know a bit of ES6 and ES7 (Object Spread) to correctly understand some of the examples given in this repo. Also be 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`
```
git clone https://github.com/happypoulp/redux-tutorial.git
```

### Move into repository
`cd redux-tutorial`
```
cd redux-tutorial
```

### Install dependencies
`npm install`
```
npm install
```

### Browse the tutorial

Expand All @@ -27,6 +33,8 @@ Start with the first tutorial: [Introduction](00_introduction.js)

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`
```
npm run example 01_simple-action-creator.js
```

Enjoy!