Make your first game in minutes with real code.
Create games instantly with our intuitive block editor and seamless JavaScript coding experience. Perfect for both beginners and experienced programmers.

Learn Coding and Game Development in a Fun Way
From First Game to Game Engine
Whether you're starting with blocks or jumping straight to code, CodeWisp gets you building real games fast while learning the skills you need for game development.
- Rapid Game Creation.
- Build your first game in minutes using real TypeScript code. No setup required - just start creating.
- Your Choice: Blocks or Code.
- Start with blocks and see the code, or dive straight into TypeScript. Switch between them anytime.
- Professional Game Patterns.
- Learn the same patterns and practices used in Unity and Unreal while building real games.
- Instant Results, Real Skills.
- Get a working game quickly while building the foundation for professional game development.
Spaceship.ts
Asteroid.ts
Rocket.ts
class Spaceship {
health: number = 100
onUpdate() {
if (Keyboard.isKeyPressed("space")) {
this.move()
}
if (this.isTouching("asteroid")) {
this.health -= 10
}
}
}