From 9fa2545c25fed8fbd66ad993103b2d6f71bb3e5e Mon Sep 17 00:00:00 2001 From: Chris Dias Date: Thu, 24 Sep 2015 17:19:33 -0700 Subject: [PATCH] update readme to include running npm install --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d2483c3..38b4d75 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@ # vscode-samples -This repository contains sample applications customized for Visual Studio Code. Each sample is a self contained workspace with configuration files specific to that folder. To take full advantage of VS Code, open an individual sample rather than opening the root (where this file is located). +This repository contains sample applications customized for Visual Studio Code. Each sample is a self contained workspace with configuration files specific to that folder. -For example, to open a new instance of VS Code and load the node-express-javascript sample, do the following from the terminal: +To get started, cd into the sample directory, run `npm install` to install any necessary dependencies, and then start code: ``` bash -code node-express-javascript +cd node-express-javascript +npm install +code . ``` ## License