From 66ac8aa68a1e2aa33a252284060f89375b969f6c Mon Sep 17 00:00:00 2001 From: Felix Rieseberg Date: Wed, 30 Aug 2017 18:37:48 -0700 Subject: [PATCH] Initial 'Hello World' (Electron, app) --- src/main/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/index.js b/src/main/index.js index 4f3ac02..0005c5a 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -1 +1,5 @@ -console.log('Hello World!') \ No newline at end of file +const { app } = require('electron') + +app.on('ready', () => { + console.log('Application ready!') +})