Free. Your name stays on the game. Upload a .zip containing your game (withindex.html at the root) or a single.html file. Reviewed within 24h.
Add one script tag and your game gets cloud saves, leaderboard scores, and player info on Viberhub — the same integrations Poki and CrazyGames offer, with zero API keys. The SDK is a safe no-op when your game runs anywhere else.
<script src="https://viberhub.in/viberhub-sdk.js"></script>
<script>
// Who's playing? → { signedIn, username }
ViberhubSDK.init().then(function (player) { ... });
// Send a score to your game's leaderboard
ViberhubSDK.submitScore(1234);
// Cloud save / load (synced across the player's devices)
ViberhubSDK.save({ level: 7, coins: 40 });
ViberhubSDK.load().then(function (data) {
if (data) restoreGame(data);
});
</script>Bonus: games hosted directly on Viberhub get automatic cloud-save sync of their localStorage for signed-in players — no SDK calls required at all.