Exporting
Export Your Game
Export your game as a static website or a Windows, macOS, or Linux desktop app.
In the editor, choose File → Export Game. Pick a target:
Web
A .zip containing your game — index.html, the runtime files, and an
assets/ folder. Unzip it and drop on any static host (GitHub Pages, Netlify, Cloudflare Workers)
Desktop
The same game plus a ready-to-run Electron
project — main.js, package.json, and a README.txt. You only need
Node.js installed. Unzip it, then from that folder:
npm install
npm startBuild an installer
To package the app into a real .exe, .dmg, or Linux installer, run the
folder through Electron Forge.