mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 12:17:18 +03:00
31 lines
398 B
Markdown
31 lines
398 B
Markdown
# Redux DevTools Counter example
|
|
|
|
## Running Example
|
|
|
|
First, clone the project:
|
|
|
|
```
|
|
git clone https://github.com/gaearon/redux-devtools.git
|
|
```
|
|
|
|
Then install the dependencies in the root folder:
|
|
|
|
```
|
|
cd redux-devtools
|
|
npm install
|
|
```
|
|
|
|
Install the dependencies in the example folder:
|
|
|
|
```
|
|
cd examples/todomvc
|
|
npm install
|
|
```
|
|
|
|
Finally, run the project:
|
|
|
|
```
|
|
npm start
|
|
open http://localhost:3000
|
|
```
|