-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
32 lines (30 loc) · 891 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const {app, BrowserWindow} = require('electron');
const path = require('path');
const url = require('url');
const express = require('./express/index.js'); // express app
var fs = require('fs');
let mainWindow;
app.on('ready', function() {
express();
mainWindow = new BrowserWindow({
width: 900,
height: 560,
autoHideMenuBar: true,
useContentSize: true,
resizable: false
});
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}));
mainWindow.focus();
mainWindow.on('closed', () => {
fs.writeFile('./express/request_log.txt', '', function(err){
if(err) console.log(err);
});
fs.writeFile('./express/total_data_received.txt', 0, function(err){
if(err) console.log(err);
});
})
});