Electron让你用Web技术构建桌面应用。
创建项目
const { app, BrowserWindow } = require('electron');
function createWindow() {
const win = new BrowserWindow({ width: 800, height: 600 });
win.loadFile('index.html');
}
app.whenReady().then(createWindow);打包发布
npm install electron-builder
electron-builder --mac
评论 (0)
暂无评论,来发表第一条评论吧!
发表评论