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