From af3f71dda3dc5bb90ed8c80c49df0a71ffe482f4 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 31 Oct 2016 10:38:04 -0700 Subject: [PATCH] Separate install and start steps --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 130ef6c..5760d95 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,10 @@ To clone and run this repository you'll need [Git](https://git-scm.com) and [Nod git clone https://github.com/electron/electron-quick-start # Go into the repository cd electron-quick-start -# Install dependencies and run the app -npm install && npm start +# Install dependencies +npm install +# Run the app +npm start ``` Learn more about Electron and its API in the [documentation](http://electron.atom.io/docs/latest).