Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions intro/powersync-overview.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: PowerSync Docs
description: "PowerSync is a sync engine that keeps your backend database in sync with in-app SQLite."
description: "PowerSync is a sync engine that keeps a client-side SQLite database in sync with your backend database."
sidebarTitle: Introduction
---

import ClientSdks from '/snippets/client-sdks.mdx';

Your app reads and writes directly to this local database, so it responds instantly and stays fully functional without a network connection.
Your app reads and writes directly to its local database, so user interactions feel instant and your app continues to work even when offline. PowerSync syncs changes to and from your local database, so updates appear across users and devices in real-time.

PowerSync is made up of the PowerSync Service and a set of client SDKs. The PowerSync Service replicates data from your backend database, partitions it based on what data each user should receive, and streams real-time updates to clients through the PowerSync client SDK.

Expand Down