For Developers

Publish your game on the web

The world's most popular platform

Reach every device with a browser.

Developer Portal
Docs
Apple
30%
Google
30%
Steam
30%
Epic
12%
Wavedash
10%

The industry's lowest fees

We charge 10% because that's what it actually costs to run a platform. You keep the rest. You made the game.

Wavedash
Unity
Godot
Unreal
Three.js

Use whatever engine you like

Unity, Godot, Unreal, Three.js, or your own stack. One import, minimal code changes, and you're on Wavedash.

Wavedash
Hosting
Distribution
Cloud Saves
Multiplayer
Achievements
Analytics

We'll handle everything else

Hosting, distribution, cloud saves, multiplayer, achievements, analytics — you just focus on the game design.

Great developers publish on Wavedash

Whitethorn GamesDead MageAurora PunksMode 7Broken RulesPhantom CompassWalaber Entertainment
Whitethorn GamesDead MageAurora PunksMode 7Broken RulesPhantom CompassWalaber Entertainment

The Wavedash SDK

Authentication, matchmaking, cloud saves, leaderboards — all from a single import.

game.js
// Get the current player
const user = WavedashJS.getUser()

// Create a leaderboard and submit a score
const leaderboard = await WavedashJS.getOrCreateLeaderboard(
    'high-scores',
    LEADERBOARD_SORT_ORDER.DESC,
    LEADERBOARD_DISPLAY_TYPE.NUMERIC
)
await WavedashJS.uploadLeaderboardScore(leaderboard.data.id, 9001, true)

// Unlock an achievement
WavedashJS.setAchievement('first_win')
WavedashJS.storeStats()