Separate install and start steps

This commit is contained in:
Kevin Sawicki 2016-10-31 10:38:04 -07:00
parent 0af284c37c
commit af3f71dda3
1 changed files with 4 additions and 2 deletions

View File

@ -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 git clone https://github.com/electron/electron-quick-start
# Go into the repository # Go into the repository
cd electron-quick-start cd electron-quick-start
# Install dependencies and run the app # Install dependencies
npm install && npm start npm install
# Run the app
npm start
``` ```
Learn more about Electron and its API in the [documentation](http://electron.atom.io/docs/latest). Learn more about Electron and its API in the [documentation](http://electron.atom.io/docs/latest).