reeco
Version:
Reeco is a CLI that helps you create game with p5.js (or any other graphics/game library) and bring it to your desktop.
15 lines (13 loc) • 457 B
JavaScript
const electron = require('electron');
const config = require('../ree.conf.json');
const { app, BrowserWindow } = electron;
app.on('ready', async () => {
const mainWindow = new BrowserWindow({
width: config.screenWidth ?? 1280,
height: config.screenHeight ?? 720
});
await mainWindow.loadFile('public/index.html');
});
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
});