Game Upload Guides

Learn how to prepare and upload your games to Jiran Games platform

Getting Started

Welcome to Jiran Games! This guide will help you prepare your game for upload to our platform. We support multiple game frameworks and technologies:

Unity Logo

Unity WebGL

Upload Unity WebGL builds

View Guide
React Logo

React (Vite)

Upload React games built with Vite

View Guide
Next.js Logo

Next.js

Upload Next.js static or server builds

View Guide
Webpack Logo

Webpack

Upload games built with Webpack

View Guide
HTML5 Logo

Plain HTML5

Upload simple HTML5 games

View Guide
Expo Logo

Expo

Upload Expo web builds

View Guide

General Requirements

File Size

Maximum upload size: 500MB

Format

Upload as a ZIP file containing your game build

Entry Point

Your game must have an index.html at the appropriate location

Assets

All game assets must be included in the ZIP file

Session Tracking

Your game must implement session tracking using our SDK

Game Session Tracking SDK

All games uploaded to our platform must implement session tracking to record player scores and maintain leaderboards.

SDK Resources

Quick Implementation Steps:

  1. Include the SDK in your game's HTML file: <script src="game-session-tracker.js"></script>
  2. Initialize the tracker: const tracker = new GameSessionTracker();
  3. End the session with a score: tracker.endSession(score)
  4. Display leaderboard: tracker.getLeaderboard(10)

Frequently Asked Questions

If your game uses a different technology, you can try packaging it as a plain HTML5 game. As long as it has an index.html and necessary JavaScript files, it should work. If you're still having trouble, contact our support team.

We recommend testing your game locally using a simple web server before uploading. For most frameworks, you can use their built-in development servers. For plain HTML5 games, you can use tools like 'http-server' or 'live-server'.

Yes! You can update your game at any time by uploading a new version. Your game URL will remain the same, but the content will be updated.

Your game will be available immediately after a successful upload, but it will be marked as "pending_review" until our team reviews it. This typically takes 1-2 business days.