[PR #311] [CLOSED] Add turbosync example - synchronized video playback with Durable Objects #468

Closed
opened 2026-05-06 13:08:14 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/cloudflare/vinext/pull/311
Author: @AliSananS
Created: 3/7/2026
Status: Closed

Base: mainHead: example/turbosync


📝 Commits (1)

  • bd0ec7e Add turbosync example - synchronized video playback with Durable Objects

📊 Changes

49 files changed (+18823 additions, -0 deletions)

View changed files

examples/turbosync/.gitignore (+44 -0)
examples/turbosync/README.md (+37 -0)
examples/turbosync/app/favicon.ico (+0 -0)
examples/turbosync/app/globals.css (+126 -0)
examples/turbosync/app/layout.tsx (+36 -0)
examples/turbosync/app/page.tsx (+143 -0)
examples/turbosync/app/player/page.tsx (+120 -0)
examples/turbosync/app/room/[id]/page.tsx (+11 -0)
examples/turbosync/app/room/[id]/room-client.tsx (+174 -0)
examples/turbosync/app/room/page.tsx (+307 -0)
examples/turbosync/biome.json (+37 -0)
examples/turbosync/bun.lock (+1575 -0)
examples/turbosync/components.json (+23 -0)
examples/turbosync/components/lobby-screen.tsx (+106 -0)
examples/turbosync/components/local-video-player.tsx (+429 -0)
examples/turbosync/components/peer-permissions-dialog.tsx (+221 -0)
examples/turbosync/components/player-dashboard.tsx (+699 -0)
examples/turbosync/components/room-settings-dialog.tsx (+164 -0)
examples/turbosync/components/ui/avatar.tsx (+109 -0)
examples/turbosync/components/ui/badge.tsx (+48 -0)

...and 29 more files

📄 Description

Summary

  • Add TurboSync example: a Next.js app that enables synchronized video playback with friends in real-time
  • Uses Cloudflare Durable Objects for state management and WebSocket-based real-time communication
  • Demonstrates how easily Next.js apps can be deployed to Cloudflare Workers using vinext

Github Repo

https://github.com/AliSananS/turbosync

Live Demo


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/cloudflare/vinext/pull/311 **Author:** [@AliSananS](https://github.com/AliSananS) **Created:** 3/7/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `example/turbosync` --- ### 📝 Commits (1) - [`bd0ec7e`](https://github.com/cloudflare/vinext/commit/bd0ec7e8ef3afa5093984bb0bb531b2e78e9c274) Add turbosync example - synchronized video playback with Durable Objects ### 📊 Changes **49 files changed** (+18823 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `examples/turbosync/.gitignore` (+44 -0) ➕ `examples/turbosync/README.md` (+37 -0) ➕ `examples/turbosync/app/favicon.ico` (+0 -0) ➕ `examples/turbosync/app/globals.css` (+126 -0) ➕ `examples/turbosync/app/layout.tsx` (+36 -0) ➕ `examples/turbosync/app/page.tsx` (+143 -0) ➕ `examples/turbosync/app/player/page.tsx` (+120 -0) ➕ `examples/turbosync/app/room/[id]/page.tsx` (+11 -0) ➕ `examples/turbosync/app/room/[id]/room-client.tsx` (+174 -0) ➕ `examples/turbosync/app/room/page.tsx` (+307 -0) ➕ `examples/turbosync/biome.json` (+37 -0) ➕ `examples/turbosync/bun.lock` (+1575 -0) ➕ `examples/turbosync/components.json` (+23 -0) ➕ `examples/turbosync/components/lobby-screen.tsx` (+106 -0) ➕ `examples/turbosync/components/local-video-player.tsx` (+429 -0) ➕ `examples/turbosync/components/peer-permissions-dialog.tsx` (+221 -0) ➕ `examples/turbosync/components/player-dashboard.tsx` (+699 -0) ➕ `examples/turbosync/components/room-settings-dialog.tsx` (+164 -0) ➕ `examples/turbosync/components/ui/avatar.tsx` (+109 -0) ➕ `examples/turbosync/components/ui/badge.tsx` (+48 -0) _...and 29 more files_ </details> ### 📄 Description ## Summary - Add TurboSync example: a Next.js app that enables synchronized video playback with friends in real-time - Uses Cloudflare Durable Objects for state management and WebSocket-based real-time communication - Demonstrates how easily Next.js apps can be deployed to Cloudflare Workers using vinext ## Github Repo https://github.com/AliSananS/turbosync ## Live Demo - https://turbosync.devshell.blog - https://turbosync.alisanan9090.workers.dev --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 13:08:14 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/vinext#468
No description provided.