1 Star 0 Fork 0

haozexu/luckydog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
haozexu 提交于 2024-07-08 17:44 . sync 3.0 code
const { app, BrowserWindow } = require('electron')
const path = require('node:path')
const createWindow = () => {
const win = new BrowserWindow({
width: 1920,
height: 1080,
frame:false,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration: true,
contextIsolation: true,
enableRemoteModule: true
}
})
win.loadFile('index.html')
win.maximize()
}
// const createWindow = () => {
// const win = new BrowserWindow({
// width: 900,
// height: 800,
// // frame:false,
// webPreferences: {
// preload: path.join(__dirname, 'preload.js'),
// nodeIntegration: true,
// contextIsolation: true,
// enableRemoteModule: true
// }
// })
// win.loadFile('index.html')
// // win.maximize()
// }
app.whenReady().then(() => {
createWindow()
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit()
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/haozexu/luckydog.git
git@gitee.com:haozexu/luckydog.git
haozexu
luckydog
luckydog
master

搜索帮助