Terminal-inspired game development platform. Build, share, and play games on the AeThex ecosystem.
$ forge init my-game
✓ Project initialized
$ forge dev
🚀 Dev server running at localhost:3000
$ forge deploy --prod
✓ Deployed to gameforge.aethex.us/my-game
_
A complete toolkit for modern game development
Build and deploy games using the Nexus Engine and AeThex infrastructure.
Real-time networking, matchmaking, and cross-platform play out of the box.
Discover and share game assets, plugins, and tools with the community.
Built-in systems for player progression, stats, and social features.
Leverage AI for NPC behavior, procedural content, and player assistance.
Deep insights into player behavior, retention, and monetization.
Clean APIs that just work
// Initialize multiplayer in 3 lines
import { GameForge } from '@aethex/gameforge';
const game = new GameForge({
projectId: 'my-game',
region: 'auto'
});
// Join or create a room
const room = await game.joinRoom('battle-royale');
// Sync player state in real-time
room.on('player:join', (player) => {
console.log(`${player.name} joined!`);
});
// That's it. You're multiplayer. Join thousands of developers building the next generation of games.