2 Star 0 Fork 0

编码喵/minecraft-launcher

加入 Gitee
與超過 1200 萬 開發者一起發現、參與優秀開源項目,私有倉庫也完全免費 :)
免費加入
文件
該倉庫未聲明開源許可證文件(LICENSE),使用請關注具體項目描述及其代碼上游依賴。
克隆/下載
main.js 638 Bytes
一鍵複製 編輯 原始數據 按行查看 歷史
Toby_lai 提交於 2024-02-03 19:54 . initial commit
const { app, BrowserWindow } = require('electron/main')
const path = require('node:path')
const SOURCE_DIR = path.join(__dirname, 'sources')
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
// preload: path.join(__dirname, 'preload.js')
}
})
win.loadFile(path.join(SOURCE_DIR,'index.html'))
}
app.whenReady().then(() => {
createWindow()
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
})
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/codemiao08/minecraft-launcher.git
git@gitee.com:codemiao08/minecraft-launcher.git
codemiao08
minecraft-launcher
minecraft-launcher
master

搜索幫助

0d507c66 1850385 C8b1a773 1850385