redux-devtools/examples/todomvc/README.md

31 lines
398 B
Markdown
Raw Normal View History

2016-03-03 00:04:22 +03:00
# Redux DevTools todomvc example
2015-12-14 07:18:29 +03:00
## Running Example
2015-12-14 07:18:29 +03:00
First, clone the project:
2015-10-17 04:11:16 +03:00
```
git clone https://github.com/gaearon/redux-devtools.git
2015-12-14 07:18:29 +03:00
```
Then install the dependencies in the root folder:
```
2015-10-17 04:11:16 +03:00
cd redux-devtools
npm install
2015-12-14 07:18:29 +03:00
```
2015-10-17 04:11:16 +03:00
2015-12-14 07:18:29 +03:00
Install the dependencies in the example folder:
```
2015-10-17 04:11:16 +03:00
cd examples/todomvc
npm install
2015-12-14 07:18:29 +03:00
```
Finally, run the project:
```
2015-10-17 04:11:16 +03:00
npm start
open http://localhost:3000
```