Skip to content

Commit 74e6ff0

Browse files
committed
Update README
Fix #4.
1 parent 8571816 commit 74e6ff0

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ If you do not know what [Redux DevTools](https://github.com/gaearon/redux-devtoo
1414

1515
## Implementation
1616

17-
1. [Get the extension from Chrome Web Store](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd) (or run `npm i & npm run build:extension` and [load the extension's folder](https://developer.chrome.com/extensions/getstarted#unpacked) `./build/extension`).
17+
1. Get the extension
18+
- from [Chrome Web Store](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd)
19+
- or build it with `npm i & npm run build:extension` and [load the extension's folder](https://developer.chrome.com/extensions/getstarted#unpacked) `./build/extension`
20+
- or run it in dev mode with `npm i & npm start` and [load the extension's folder](https://developer.chrome.com/extensions/getstarted#unpacked) `./dev`.
1821
2. Update your [configureStore](https://github.com/zalmoxisus/redux-devtools-extension/commit/ffa804594008c585d28b3319bfcd4b87d5df384d):
1922
```javascript
2023
const store = createStore(rootReducer, initialState);
@@ -39,6 +42,14 @@ If you do not know what [Redux DevTools](https://github.com/gaearon/redux-devtoo
3942
window.devToolsExtension || (f => f)
4043
)(createStore);
4144
```
45+
46+
## Examples
47+
Open these urls to test the extension:
48+
49+
- [Counter](http://zalmoxisus.github.io/redux-devtools-extension/examples/counter/)
50+
- [TodoMVC](http://zalmoxisus.github.io/redux-devtools-extension/examples/todomvc/)
51+
52+
Also you may run them from `./examples` folder (on port 4001 and 4002 by default).
4253

4354
## Credits
4455

0 commit comments

Comments
 (0)