Merge pull request #93 from khronnuz/patch-1

Improve instructions on how to run example
This commit is contained in:
Dan Abramov 2015-09-03 16:16:41 +03:00
commit 2a1596901b

View File

@ -1,6 +1,14 @@
# Redux DevTools Counter example # Redux DevTools Counter example
## Getting Started ## Running example
1. Install dependencies: `npm i` ```
2. Start the development server: `npm start` git clone https://github.com/gaearon/redux-devtools.git
cd redux-devtools
npm install
cd examples/counter
npm install
npm start
open http://localhost:3000
```