redux-devtools/examples/counter/README.md

31 lines
398 B
Markdown
Raw Normal View History

# Redux DevTools Counter example
2015-12-14 07:18:29 +03:00
## Running Example
First, clone the project:
```
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:
```
cd redux-devtools
npm install
2015-12-14 07:18:29 +03:00
```
2015-12-14 07:18:29 +03:00
Install the dependencies in the example folder:
```
cd examples/counter
npm install
2015-12-14 07:18:29 +03:00
```
Finally, run the project:
```
npm start
open http://localhost:3000
```