├── .gitignore
├── Dockerfile
├── README.md
├── index.html
├── index.js
└── package.json
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | npm-debug.log
3 | bundle.js
4 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | from node
2 | add . /source
3 | workdir /source
4 | run npm i
5 | cmd npm start
6 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](http://standardjs.com/)
2 |
3 | For beginners like me to learn the concepts in [Redux](https://github.com/reactjs/redux)
4 |
5 | To run this example:
6 |
7 | 1. [Download this repo](https://github.com/jackielii/simplest-redux-example/archive/master.zip) or `git clone https://github.com/jackielii/simplest-redux-example.git`
8 | 2. From the repo folder run:
9 | `npm install`
10 | 3. `npm start`
11 | 4. open [http://localhost:8000/](http://localhost:8000/) in the browser
12 |
13 | And also head over to http://redux.js.org/ for some great documentation.
14 |
15 | There is also a [webpack](https://github.com/jackielii/simplest-redux-example/tree/webpack) and an [ES5](https://github.com/jackielii/simplest-redux-example/tree/es5) example.
16 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |