Skip to content

Commit cfdf756

Browse files
committed
Merge pull request #132 from gaearon/next
New API
2 parents f028569 + b228a88 commit cfdf756

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1276
-2144
lines changed

README.md

Lines changed: 277 additions & 51 deletions
Large diffs are not rendered by default.

examples/counter/README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,30 @@
11
# Redux DevTools Counter example
22

3-
## Running example
3+
## Running Example
4+
5+
First, clone the project:
46

57
```
68
git clone https://github.com/gaearon/redux-devtools.git
9+
```
10+
11+
Then install the dependencies in the root folder:
12+
13+
```
714
cd redux-devtools
815
npm install
16+
```
917

18+
Install the dependencies in the example folder:
19+
20+
```
1021
cd examples/counter
1122
npm install
23+
```
24+
25+
Finally, run the project:
26+
27+
```
1228
npm start
1329
open http://localhost:3000
1430
```

examples/counter/containers/App.js

Lines changed: 0 additions & 40 deletions
This file was deleted.

examples/counter/index.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/counter/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
},
1717
"homepage": "https://github.com/gaearon/redux-devtools#readme",
1818
"dependencies": {
19-
"react": "^0.13.3",
20-
"react-redux": "^3.0.0",
19+
"react": "^0.14.0",
20+
"react-dom": "^0.14.0",
21+
"react-redux": "^4.0.0",
2122
"redux": "^3.0.0",
2223
"redux-thunk": "^1.0.0"
2324
},
@@ -26,6 +27,9 @@
2627
"babel-loader": "^5.1.4",
2728
"node-libs-browser": "^0.5.2",
2829
"react-hot-loader": "^1.3.0",
30+
"redux-devtools": "^3.0.0",
31+
"redux-devtools-log-monitor": "^1.0.1",
32+
"redux-devtools-dock-monitor": "^1.0.1",
2933
"webpack": "^1.9.11",
3034
"webpack-dev-server": "^1.9.0"
3135
}

examples/counter/reducers/index.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)