Posts

Showing posts with the label ELECTRON

ELECTRON PROJECT LOGIN & SIGNUP FORM

Image
main.js console.log("main process working"); console.log('main.js'); const electron =  require("electron"); const app = electron.app; const BrowserWindow = electron.BrowserWindow; const path = require("path"); const url = require("url"); let win; function createWindow(){     win = new BrowserWindow({         webPreferences:{             nodeIntegration:true,             contextIsolation:false,         }     });     win.loadURL(url.format({         pathname: path.join(__dirname, 'index.html'),         protocol: 'file',         slashes: true     }));          win.webContents.openDevTools();     win.on('closed', ()=>{         win = null;     }) } app.on('ready', createWindow); app.on('window-all-closed', () =>{   ...