1 Star 0 Fork 0

ll2021/react-electron-build-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
huaner 提交于 2021-09-02 17:53 . test
// 引入electron并创建一个Browserwindow
const {app, BrowserWindow} = require('electron')
const path = require('path')
const url = require('url')
// 保持window对象的全局引用,避免JavaScript对象被垃圾回收时,窗口被自动关闭.
let mainWindow
function createWindow () {
//创建浏览器窗口,宽高自定义具体大小你开心就好
mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,//node下所有的东西都可以供渲染使用
contextIsolation: false,
enableRemoteModule: true
} })
// 加载应用----- electron-quick-start中默认的加载入口
mainWindow.loadURL(url.format({
// pathname: path.join(__dirname, 'index.html'),
pathname: path.join(__dirname, './build/index.html'),
protocol: 'file:',
slashes: true
}));
// 加载应用----适用于 react 项目
// mainWindow.loadURL('http://localhost:3000/');
// 打开开发者工具,默认不打开
// mainWindow.webContents.openDevTools()
// 关闭window时触发下列事件.
mainWindow.on('closed', function () {
mainWindow = null
})
}
// 当 Electron 完成初始化并准备创建浏览器窗口时调用此方法
app.on('ready', createWindow)
// 所有窗口关闭时退出应用.
app.on('window-all-closed', function () {
// macOS中除非用户按下 `Cmd + Q` 显式退出,否则应用与菜单栏始终处于活动状态.
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', function () {
// macOS中点击Dock图标时没有已打开的其余应用窗口时,则通常在应用中重建一个窗口
if (mainWindow === null) {
createWindow()
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ll1252352692/react-electron-build-test.git
git@gitee.com:ll1252352692/react-electron-build-test.git
ll1252352692
react-electron-build-test
react-electron-build-test
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385