From 0a1a49c4d8deaf9c0516168d87d4fe7be68e52a4 Mon Sep 17 00:00:00 2001 From: Johnny Everson Date: Tue, 1 Sep 2015 13:20:58 -0300 Subject: [PATCH] Improve instructions on how to run example Note: taken as it is from the root Readme --- examples/counter/README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/examples/counter/README.md b/examples/counter/README.md index 524cb4c1..3edaeb51 100644 --- a/examples/counter/README.md +++ b/examples/counter/README.md @@ -1,6 +1,14 @@ # 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 +```