From 20a2f6fd236ccba29b5a4dbbd21cf32a907fcec9 Mon Sep 17 00:00:00 2001 From: Jim Cowart Date: Sun, 23 Sep 2012 00:27:54 -0400 Subject: [PATCH] Updated node example app README with new install/run instructions --- example/node/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/example/node/README.md b/example/node/README.md index d442ea3..42afcac 100644 --- a/example/node/README.md +++ b/example/node/README.md @@ -6,7 +6,11 @@ As much as I want to convince you that this sample app was written with you in m ## How to run -Open a terminal/console to the example/node directory and run `node index.js`. Then open a browser to http://localhost:8002. Once you enter a search term in the client UI, it will trigger the server side twitter search module to start searching, etc. +### Install depedencies first! +Open a terminal/console to the example/node directory and run `npm install`. + +### Now, to run... +Open a terminal/console to the example/node directory and run `npm start`. Then open a browser to http://localhost:8002. Once you enter a search term in the client UI, it will trigger the server side twitter search module to start searching, etc. ## The Good, the Bad & the Caveats