├── .gitignore ├── LICENSE.md ├── README.md ├── arch.png ├── client ├── getBookmarkPreview.tsx ├── index.css ├── localStorage.ts ├── main.tsx ├── multiplayerAssetStore.tsx ├── pages │ ├── Room.tsx │ └── Root.tsx └── vite-env.d.ts ├── index.html ├── package.json ├── public └── favicon.ico ├── tsconfig.json ├── vite.config.ts ├── worker-configuration.d.ts ├── worker ├── TldrawDurableObject.ts ├── assetUploads.ts └── worker.ts └── wrangler.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/README.md -------------------------------------------------------------------------------- /arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/arch.png -------------------------------------------------------------------------------- /client/getBookmarkPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/client/getBookmarkPreview.tsx -------------------------------------------------------------------------------- /client/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/client/index.css -------------------------------------------------------------------------------- /client/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/client/localStorage.ts -------------------------------------------------------------------------------- /client/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/client/main.tsx -------------------------------------------------------------------------------- /client/multiplayerAssetStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/client/multiplayerAssetStore.tsx -------------------------------------------------------------------------------- /client/pages/Room.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/client/pages/Room.tsx -------------------------------------------------------------------------------- /client/pages/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/client/pages/Root.tsx -------------------------------------------------------------------------------- /client/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/vite.config.ts -------------------------------------------------------------------------------- /worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/worker-configuration.d.ts -------------------------------------------------------------------------------- /worker/TldrawDurableObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/worker/TldrawDurableObject.ts -------------------------------------------------------------------------------- /worker/assetUploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/worker/assetUploads.ts -------------------------------------------------------------------------------- /worker/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/worker/worker.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tldraw/tldraw-sync-cloudflare/HEAD/wrangler.toml --------------------------------------------------------------------------------