For Developers
Publish your game on the web
The world's most popular platform
Reach every device with a browser.
30%
30%
30%
12%
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.
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.
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
The Wavedash SDK
Authentication, matchmaking, cloud saves, leaderboards — all from a single import.
// 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()