EveryDev.ai
Subscribe
Home
Tools

3,355+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Syncular
    Syncular icon

    Syncular

    Data Synchronization

    Offline-first SQL sync library with local SQLite on every client, a server-authoritative commit log, and TypeScript and Rust cores for web, iOS, Android, Flutter, React Native, Tauri, and Rust.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully open-source under Apache-2.0. Free to use, modify, and distribute.

    Engagement

    Available On

    Android
    iOS
    Web
    API
    SDK

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Data SynchronizationDatabase ToolsAI Development Libraries

    Alternatives

    RemtolocLiteFSDurable Streams
    Developer
    SyncularEst. 2026

    Listed Aug 2026

    About Syncular

    Syncular is an open-source, offline-first SQL sync engine licensed under Apache-2.0. It gives every client a real local SQLite database — OPFS in the browser, native SQLite elsewhere — while a single ordered commit log on the server remains the authoritative source of truth. The project publishes TypeScript and Rust cores that implement one written protocol and pass the same conformance suite.

    What It Is

    Syncular sits in the local-first / offline-first data sync category. Applications read and write against a local SQLite replica; mutations queue in an optimistic outbox and are pushed to the server commit log, which orders, validates, and fans changes back to exactly the clients authorized to see them. The result is instant local reads, conflict-safe writes, and real-time propagation without requiring a live network connection.

    Two Cores, One Protocol

    The project enforces cross-platform parity through a spec-first approach:

    • TypeScript core (@syncular/client): runs in a Web Worker on OPFS via sqlite-wasm, ships at 31.3 KB gzipped, and powers Web and React targets.
    • Rust core (syncular-client + syncular-ffi): packaged as a C-ABI native library and consumed by Swift, Kotlin, Flutter, React Native, Tauri, and bare Rust bindings.

    Both cores implement SPEC.md and are held identical by golden byte-level vectors and 95 conformance scenarios run against both in CI. The homepage states bootstrap of 100,000 rows takes approximately 30 ms and realtime propagation p95 is 0.2 ms.

    Platform and Deployment Coverage

    Syncular targets a wide surface area from a single protocol:

    • Client platforms: Web (browser OPFS), React, Swift (iOS/macOS), Kotlin (Android/JVM), Flutter/Dart, React Native, Tauri, Rust
    • Server runtimes: Bun/Node via Hono, Cloudflare Workers
    • Server storage: SQLite, Postgres, Cloudflare D1
    • Blob/segment storage: S3-compatible stores and Cloudflare R2

    The scaffolder (bun create syncular-app my-app) generates a working project from minimal, web, or tauri templates.

    Key Capabilities

    • Scope-based authorization: resolveScopes(actor) in the backend gates every read and write; no data escapes its scope.
    • Offline outbox: writes queue while disconnected and replay in order on reconnect with idempotent retry.
    • Typed SQL / SYQL: one checked query plan generates typed APIs for TypeScript, Swift, Kotlin, Dart, and Rust via the @syncular/typegen CLI.
    • CRDT columns: collaborative text per column, byte-identical across both cores, powered by Yjs via @syncular/crdt-yjs.
    • Optional E2EE: per-column AES-256-GCM keyrings with authorized local revocation via @syncular/crypto.
    • Windowed sync: partial replicas with atomic eviction and a completeness oracle for large datasets.
    • Offline FTS5: generated full-text projections maintained inside the local SQLite mirror.
    • Testkit: @syncular/testkit provides an in-process server, fault injection, and a virtual clock for integration tests.
    • Multi-tab: Web Locks leader election gives N browser tabs one core, one WebSocket, and one OPFS database; followers promote automatically.

    Update: v0.15.44

    The homepage and docs reference the current published release as v0.15.44. The GitHub repository records a latest release of v0.5.0 (published July 14, 2026), with the repository last pushed August 1, 2026. The project is under active development with a public ROADMAP.md, TODO.md, and a live conformance suite enforcing spec compliance across both cores.

    Syncular - 1

    Community Discussions

    Be the first to start a conversation about Syncular

    Share your experience with Syncular, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully open-source under Apache-2.0. Free to use, modify, and distribute.

    • TypeScript and Rust client cores
    • Server packages (Hono, Cloudflare Workers)
    • Scope-based authorization
    • Offline outbox and real-time sync
    • CRDT columns, E2EE, windowed sync

    Capabilities

    Key Features

    • Offline-first local SQLite on every client
    • Server-authoritative ordered commit log
    • TypeScript core (Web Worker + OPFS sqlite-wasm)
    • Rust core with C-ABI FFI for native platforms
    • Scope-based authorization (resolveScopes)
    • Optimistic offline outbox with idempotent replay
    • Real-time delta push over WebSocket
    • Fast bootstrap: 100k rows in ~30 ms
    • Typed SQL / SYQL query generation for TypeScript, Swift, Kotlin, Dart, Rust
    • CRDT columns (Yjs-based collaborative text)
    • Optional per-column E2EE (AES-256-GCM)
    • Windowed sync with partial replicas and completeness oracle
    • Offline FTS5 full-text search
    • Multi-tab Web Locks leader election
    • Content-addressed blob storage (S3/R2)
    • In-process testkit with fault injection
    • 95 cross-core conformance scenarios in CI
    • Cloudflare Workers server adapter
    • Postgres, SQLite, and D1 server storage backends
    • Scaffolder: bun create syncular-app

    Integrations

    React
    Swift (iOS/macOS)
    Kotlin (Android/JVM)
    Flutter/Dart
    React Native
    Tauri
    Rust
    Hono
    Cloudflare Workers
    Cloudflare D1
    Cloudflare R2
    PostgreSQL
    SQLite
    Amazon S3
    Bun
    Node.js
    Yjs
    sqlite-wasm (OPFS)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Syncular and help others make informed decisions.

    Developer

    Syncular Team

    Syncular builds an open-source, offline-first SQL sync engine that gives every client a real local SQLite database while keeping a server-authoritative commit log as the single source of truth. The project ships two independent cores — TypeScript and Rust — that implement one written protocol and pass the same conformance suite, covering web, iOS, Android, Flutter, React Native, Tauri, and Rust targets. Syncular is licensed under Apache-2.0 and developed spec-first, with golden byte-level vectors and 95 conformance scenarios enforcing cross-core parity in CI.

    Founded 2026
    Read more about Syncular Team
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Remtoloc icon

    Remtoloc

    Sync databases and files from your server to your Mac with just two clicks using SSH/SSL, Rsync, and S3 support.

    LiteFS icon

    LiteFS

    A FUSE-based file system for replicating SQLite databases across a cluster of machines, intercepting writes to detect transaction boundaries and record changes in LTX files.

    Durable Streams icon

    Durable Streams

    Persistent, addressable, real-time HTTP-based data streams for building resilient agent sessions and collaborative multi-user, multi-agent AI systems.

    Browse all tools

    Related Topics

    Data Synchronization

    AI-enhanced solutions that ensure data consistency across multiple systems with conflict resolution, automated transformation, and intelligent change detection.

    9 tools

    Database Tools

    AI-powered tools for database management, optimization, query construction, and schema design that enhance developer productivity and database performance.

    53 tools

    AI Development Libraries

    Programming libraries and frameworks that provide machine learning capabilities, model integration, and AI functionality for developers.

    267 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions