|
@@ -188,3 +188,19 @@ it from [here](https://github.com/atom/electron/releases).
|
|
|
After you're done writing your app, you can create a distribution by
|
|
|
following the [Application Distribution](./application-distribution.md) guide
|
|
|
and then executing the packaged app.
|
|
|
+
|
|
|
+### Try this Example
|
|
|
+
|
|
|
+Clone and run the code in this tutorial by using the [`atom/electron-quick-start`](https://github.com/atom/electron-quick-start)
|
|
|
+repository.
|
|
|
+
|
|
|
+**Note**: Running this requires [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which includes [npm](https://npmjs.org)) on your system.
|
|
|
+
|
|
|
+```bash
|
|
|
+# Clone the repository
|
|
|
+$ git clone https://github.com/atom/electron-quick-start
|
|
|
+# Go into the repository
|
|
|
+$ cd electron-quick-start
|
|
|
+# Install dependencies and run the app
|
|
|
+$ npm install && npm start
|
|
|
+```
|