TLDR Build a real-time, offline-capable todo app with Jazz and Vue 3. Jazz replaces your entire backend with collaborative data structures called CoValues. Combined with community-jazz-vue, you get composables like useCoState that plug into Vue’s reactivity system. The app syncs across tabs and...
I’m building a simplified sync engine from scratch using Nuxt 4. My approach: study how production-grade frameworks solve the hard problems, then implement a minimal version myself. Jazz is my primary reference a local-first framework with elegant patterns for persistence, conflict resolution, and...
Ever been frustrated when your web app stops working because the internet connection dropped? That’s where local-first applications come in! In this guide, we’ll explore how to build robust, offline-capable apps using Vue 3 and Dexie.js. If you’re new to local-first development, check out my...
TLDR Set up SQLite WASM in a Vue 3 application for offline data storage Learn how to use Origin Private File System (OPFS) for persistent storage Build a SQLite query playground with Vue composables Implement production-ready offline-first architecture Compare SQLite vs IndexedDB for web...
Imagine having complete control over your data in every web app, from social media platforms to productivity tools. Picture using these apps offline with automatic synchronization when you’re back online. This is the essence of local-first web development – a revolutionary approach that puts users...