build local-first apps with sync.

Local-first is a modern architecture where UIs load instantly, apps works offline, and state is automatically synced across all user devices

existing solution

step 1: set up local storage

Set up a local-storage library like IndexedDB or SQLite

step 2: UI with optimistic updates

Manage state on your users' devices with local-storage

Update UI optimistically when data changes

step 3: create sync engine

Set up sync engine (e.g., websockets, HTTP polling)

Create a queueing system for changes

Determine and merge conflicts

step 4: create network layer

Create a layer for connectivity detection across devices and users

Implement retries and backoffs

Build request batching to reduce the payload size

step 5: misc.

Test your sync engine's performance, reliability, and scale across different network conditions

Ensure you maintain security and privacy of your users' data

And anyone that's built a sync engine knows that the first (and second) rule of sync engines is 'don't build your own sync engine from scratch'

with Basic

step 1: install Basic

run 'npx create-lofi-app' in your terminal

step 2: write single-line database commands

Implement Basic sync + db in your app with single-line DB commands like .getAll(), .add(), and .update()

That's it! Local-first sync is enabled in your app. Basic automatically handles the sync across devices, users, and offline-mode. You also attain much simpler state management.

you don't have to build alone!

join our discord for an active community of builders, and get live support from our founders

join our Discord