From bfbacefae7ec8d5f2a04c155241501047e1e94e5 Mon Sep 17 00:00:00 2001 From: Daniel Bugl Date: Thu, 15 Oct 2015 21:16:33 +0200 Subject: [PATCH] prevent possible errors in example I just ran into this issue and thought it might be react 0.14, then I realized I didn't `npm install` in the root directory :grin: --- examples/todomvc/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/todomvc/README.md b/examples/todomvc/README.md index da2a8208..012cb007 100644 --- a/examples/todomvc/README.md +++ b/examples/todomvc/README.md @@ -2,5 +2,6 @@ ## Getting Started -1. Install dependencies: `npm i` -2. Start the development server: `npm start` +1. Install dependencies in the root folder: `cd ../..` and `npm i` +2. Install dependencies in the example folder: `cd examples/todomvc` and `npm i` +3. Start the development server: `npm start`