Electron 기본 생성 코드 리뷰
main.js const { app, BrowserWindow } = require("electron"); const path = require("path"); Electron 모듈에서 app, BrowserWindow를 로드한다. Path를 사용하기 위해 path를 불러온다. function createWindow() { // index.html/preload.js 로드 const win = new BrowserWindow({ width: 800, height: 600, webPreferences: { preload: path.join(__dirname, "preload.js"), }, }); win.loadFile("index.html"); } CreateWindow() 함수를 생성한다. 창의 속성을..