A Reddit-powered speed typing game — type fast, beat the clock, and climb the leaderboard.
Typeers is a retro arcade-style typing game built natively on Reddit using Devvit. Words come directly from Reddit — pulled from subreddit posts, comments, and community-created levels. It features community reward challenges, weekly tournaments, and a full creator economy.
-
Multiple Game Modes
- Daily Challenge with consistent word sets
- Category-based levels (Reddit, Tech, Animals, Gaming, Space)
- Community Words pulled from your subreddit's top posts
- User-generated custom levels from posts and comments
-
Weekly Tournaments
- Automated Monday-to-Sunday competitive cycles
- Auto-pinned tournament posts with distinguished styling
- Full tournament dashboard with current + previous week stats
- Cron-scheduled creation via Devvit scheduler
-
User-Generated Content
- Create custom levels from any post or comment via menu actions
- In-game level editor with word list builder
- Browse, play, rate, and remix community levels
- Creator leaderboards, stats, and profile pages
-
Progression System
- Real-time daily leaderboards
- Persistent stats (streaks, WPM, accuracy, all-time bests)
- Combo multipliers (up to 5x) and time bonuses
- Personal records and score sharing via comments
A tiered challenge system where creators embed hidden rewards inside typing challenges. Players type words to discover and claim rewards like coupons, secrets, giveaways, and messages.
-
Three Tiers:
- 🥇 Golden — 15 words, 3 rewards, 100 claims, 7-day duration
- 💎 Diamond — 25 words, 6 rewards, 500 claims, 30 days
- 🏆 Legendary — 30 words, 10 rewards, 2000 claims, 90 days, hidden reward count
-
Reward Types: Coupons, secrets, giveaways, messages
-
Once-Per-User: Each player can only play a golden challenge once
-
Reward Words: Special words trigger particle effects and animations when typed
-
Shuffled Delivery: Reward words are randomized each play for fairness
-
Player Vault: Claimed rewards stored in a personal vault with redeem tracking
-
Creator Dashboard: Challenge analytics (plays, completions, claims, claim rate)
-
Payment Bridge: Reddit Gold purchases via
products.json→ token credits → challenge creation. Supports purchase, fulfillment, and refund flows.
Golden challenges require moderator approval before going live. Approval uses Reddit's native menu actions (not in-game UI):
- Creator purchases a tier token via Reddit Gold
- Creator fills out the in-game creation form (title, name, words, rewards)
- Challenge enters "pending" status
- Moderators click "🛡️ Manage Golden Challenges" from the subreddit menu
- A native Reddit form shows all pending/active challenges with approve/reject options
- On approval, a custom post is auto-created for the challenge
- Keyboard timing fix: keyboard appears only when typing starts (after countdown), not during 3-2-1-GO
readOnlyinput during countdown, switches to editable ononCountdownCompletecallback- Aggressive refocus interval to keep mobile keyboard open during gameplay
- Touch-friendly UI with appropriately sized tap targets
- Visit the Devvit Apps Directory
- Search for "Typeers"
- Click "Install" and select your subreddit
- The app creates an initial game post and tournament automatically
devvit install typeers <your-subreddit>- Click any Typeers post in your subreddit
- Hit "PLAY NOW"
- Type the words as fast as you can
- Build combos for bonus points and extra time
- Complete all words before time runs out
- From a Comment: Three dots menu → "🎮 Create Typeers Level"
- From a Post: Three dots menu → "⌨️ Create Typeers Level from Post"
- In-Game Editor: Use the level creator to build custom word lists
- Open the game menu → "✨ CREATE GOLDEN CHALLENGE"
- Purchase a tier token (Golden/Diamond/Legendary) via Reddit Gold
- Fill in title, creator name, words, reward words with descriptions
- Submit for mod approval → once approved, a post is created automatically
- Create Typeers Post — Create a new game post (subreddit menu, mod-only)
- Start Weekly Tournament — Create and pin a tournament post (subreddit menu, mod-only)
- Manage Golden Challenges — Review, approve, or reject golden challenges (subreddit menu, mod-only)
- Create Level from Comment/Post — Turn any content into a typing challenge (available to all users)
| Technology | Purpose |
|---|---|
| Devvit | Reddit's developer platform |
| Phaser 3 | Game engine (rendering, particles, animations) |
| React | UI components and state management |
| TypeScript | Type safety across client and server |
| Hono | Backend HTTP routing |
| tRPC | Type-safe API layer |
| Redis | Leaderboards, game state, analytics |
| Vite | Build tooling |
| Vitest | Testing |
- Starting Time: 10 seconds
- Time per Word: +3 seconds (scales with word length)
- Combo System: Chain correct words for 2x → 3x → 4x → 5x multipliers
- Time Bonus: Extra points for fast completions
- Accuracy: Mistakes break combos and cost time
- Reward Words: Golden challenge words trigger particle effects and reward claims
typeers/
├── src/
│ ├── game.tsx # Main game UI (React)
│ ├── splash.tsx # Splash/loading screen
│ ├── game/
│ │ ├── FastTyperGame.ts # Phaser game logic
│ │ ├── config.ts # Phaser configuration
│ │ └── index.ts # Game module entry
│ ├── server/
│ │ ├── index.ts # Hono server setup
│ │ ├── trpc.ts # tRPC router (all API routes)
│ │ ├── context.ts # Request context
│ │ ├── core/
│ │ │ ├── game.ts # Word generation, scoring, stats
│ │ │ ├── golden.ts # Golden challenges, rewards, payments
│ │ │ ├── tournament.ts # Weekly tournaments
│ │ │ ├── levels.ts # UGC levels, gallery, ratings
│ │ │ ├── post.ts # Post creation
│ │ │ └── count.ts # Counter utilities
│ │ └── routes/
│ │ ├── menu.ts # Menu actions + mod approval forms
│ │ ├── payments.ts # Reddit Gold fulfill/refund handlers
│ │ ├── scheduler.ts # Cron tasks (weekly tournament)
│ │ └── triggers.ts # App install trigger
│ ├── products.json # Reddit Gold product definitions
│ ├── trpc.ts # Client-side tRPC setup
│ └── transformer.ts # SuperJSON transformer
├── devvit.json # Devvit app configuration
├── public/ # Static assets
└── tools/ # TypeScript configs
- Node.js 22+
- Reddit account on Reddit Developers
git clone https://github.com/AbinjithTK/Typeers.git
cd typeers
npm install
npx devvit login
npm run dev| Command | Description |
|---|---|
npm run dev |
Start playtest server |
npm run build |
Build client and server |
npm run type-check |
TypeScript validation |
npm run test |
Run test suite |
npm run lint |
Lint code |
npx devvit upload |
Upload new version |
npx devvit publish |
Publish to Reddit |
BSD-3-Clause
Made with ❤️ for Reddit communities