
Open-source game engine for vibecoding. Play from your terminal. Write once, compile everywhere.
AuraScript is designed so you can focus on game logic in JavaScript while the runtime handles native execution across desktop platforms.
aura bundles your JS into a deterministic game bundle.# create
npm install -g auramaxx
auramaxx create my-game
cd my-game
# run in dev
aura dev
# publish
npm run publish
npm run publish uses npx auramaxx publish in scaffolded projects, so your package name/version can be selected interactively before publishing.
AuraScript packages your game logic as a JS bundle and ships it with the runtime contract for native execution. In practice: write one game in JS, compile once per target platform, distribute via npm.