Play Along
+Use the demo snippets in an Electron app of your own. The Electron Quick Start(opens in new window) app is a bare-bones setup that pairs with these demos. Follow the instructions here to get it going. You'll need Git(opens in new window) and Node.js(opens in new window) on your computer to do this.
+$ git clone https://github.com/electron/electron-quick-start
+$ cd electron-quick-start
+$ npm install && npm start
+
+ About the Code
+The source code of this app(opens in new window) has been organized with ease of navigation in mind.
+ +Nearly all (over 90%) of ES2015(opens in new window) is available to use in Electron without the use of pre-processors because it's a part of V8(opens in new window) which is built into Electron.
+ +To illustrate this we've made use of const, for unchanging declarations; let for scoped declarations; and template strings like: `Result is ${output}` in the demo snippets.
+