From 5483416ce2f745790b995a50430589918fb7b995 Mon Sep 17 00:00:00 2001 From: Mark Lybrand Date: Mon, 2 Jul 2012 21:59:11 -0700 Subject: [PATCH] changed .gitignore to avoid vim backups. changed handbook to set hello world server port to 3000 and added comment that server will re-map to 80 --- .gitignore | 4 +++- ReadMe.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 496ee2c..fcca286 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -.DS_Store \ No newline at end of file +.DS_Store + +*~ diff --git a/ReadMe.md b/ReadMe.md index 5b9fc35..d5ba00b 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -99,7 +99,7 @@ this file, write the following code: // close the response res.end(); - }).listen(80); // the server will listen on port 80 + }).listen(3000); // the server will remap the port to 80