const{app,BrowserWindow}=require('electron')constpath=require('path')consturl=require('url')letwinfunctioncreateWindow(){// Create the browser window.win=newBrowserWindow({width:1000,height:1000})// and load the index.html of the app.win.loadURL(url.format({pathname:path.join(__dirname,'one.html'),protocol:'file:',slashes:true,}))win.on('close',()=>{win=null})win.webContents.openDevTools()win.on('closed',()=>{win=null})}app.on('ready',createWindow)