From fce383b3b8ab24e1c459e34bf5c1b89e4c09e506 Mon Sep 17 00:00:00 2001 From: Fernando Alex Helwanger Date: Wed, 10 Feb 2016 08:53:19 -0200 Subject: [PATCH] Add npm install step `npm install` step was missing. Also, changed http://localhost:8080 to a hyperlink. --- lessons/01-setting-up.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lessons/01-setting-up.md b/lessons/01-setting-up.md index b28a15df..2eef8b17 100644 --- a/lessons/01-setting-up.md +++ b/lessons/01-setting-up.md @@ -12,10 +12,11 @@ up our project. git clone cd react-router-tutorial git checkout start +npm install npm start ``` -Now open up http://localhost:8080 +Now open up [http://localhost:8080](http://localhost:8080) Feel free to poke around the code to see how we're using webpack and npm scripts to run the app.