initial commit

This commit is contained in:
Feross Aboukhadijeh
2016-01-02 16:01:08 +01:00
commit a1d69dbba7
7 changed files with 184 additions and 0 deletions

45
index.js Normal file
View File

@@ -0,0 +1,45 @@
var electron = require('electron')
var app = electron.app
// report crashes to the Electron project
require('crash-reporter').start()
// adds debug features like hotkeys for triggering dev tools and reload
require('electron-debug')()
// prevent window being garbage collected
var mainWindow
function onClosed () {
// dereference the window
// for multiple windows store them in an array
mainWindow = null
}
function createMainWindow () {
const win = new electron.BrowserWindow({
width: 600,
height: 400
})
win.loadURL('file://' + __dirname + '/index.html')
win.on('closed', onClosed)
return win
}
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (!mainWindow) {
mainWindow = createMainWindow()
}
})
app.on('ready', () => {
mainWindow = createMainWindow()
})