|
| 1 | +# @sqliteai/sqlite-sync |
| 2 | + |
| 3 | +[](https://www.npmjs.com/package/@sqliteai/sqlite-sync) |
| 4 | +[](LICENSE.md) |
| 5 | +[%26nbsp%3B%25%3C%5C%2Ftd%3E&replace=%241%25&label=coverage&labelColor=rgb(85%2C%2085%2C%2085)%3B&color=rgb(167%2C%20252%2C%20157)%3B&link=https%3A%2F%2Fsqliteai.github.io%2Fsqlite-sync%2F)](https://sqliteai.github.io/sqlite-sync/) |
| 6 | + |
| 7 | +> SQLite Sync extension packaged for Node.js |
| 8 | +
|
| 9 | +**SQLite Sync** is a multi-platform extension that brings a true **local-first experience** to your applications with minimal effort. It extends standard SQLite tables with built-in support for offline work and automatic synchronization, allowing multiple devices to operate independently—even without a network connection—and seamlessly stay in sync. With SQLite Sync, developers can easily build **distributed, collaborative applications** while continuing to rely on the **simplicity, reliability, and performance of SQLite**. |
| 10 | + |
| 11 | +Under the hood, SQLite Sync uses advanced **CRDT (Conflict-free Replicated Data Type)** algorithms and data structures designed specifically for **collaborative, distributed systems**. This means: |
| 12 | + |
| 13 | +- Devices can update data independently, even without a network connection. |
| 14 | +- When they reconnect, all changes are **merged automatically and without conflicts**. |
| 15 | +- **No data loss. No overwrites. No manual conflict resolution.** |
| 16 | + |
| 17 | +In simple terms, CRDTs make it possible for multiple users to **edit shared data at the same time**, from anywhere, and everything just works. |
| 18 | + |
| 19 | +## Features |
| 20 | + |
| 21 | +- ✅ **Bidirectional Sync** - Sync local SQLite databases with cloud storage |
| 22 | +- ✅ **Conflict Resolution** - Intelligent conflict handling and resolution |
| 23 | +- ✅ **Offline-First** - Full functionality without network connectivity |
| 24 | +- ✅ **Cross-platform** - Works on macOS, Linux (glibc/musl), and Windows |
| 25 | +- ✅ **Zero configuration** - Automatically detects and loads the correct binary for your platform |
| 26 | +- ✅ **TypeScript native** - Full type definitions included |
| 27 | +- ✅ **Modern ESM + CJS** - Works with both ES modules and CommonJS |
| 28 | + |
| 29 | +## Installation |
| 30 | + |
| 31 | +```bash |
| 32 | +npm install @sqliteai/sqlite-sync |
| 33 | +``` |
| 34 | + |
| 35 | +The package automatically downloads the correct native extension for your platform during installation. |
| 36 | + |
| 37 | +### Supported Platforms |
| 38 | + |
| 39 | +| Platform | Architecture | Package | |
| 40 | +|----------|-------------|---------| |
| 41 | +| macOS | ARM64 (Apple Silicon) | `@sqliteai/sqlite-sync-darwin-arm64` | |
| 42 | +| macOS | x86_64 (Intel) | `@sqliteai/sqlite-sync-darwin-x86_64` | |
| 43 | +| Linux | ARM64 (glibc) | `@sqliteai/sqlite-sync-linux-arm64` | |
| 44 | +| Linux | ARM64 (musl/Alpine) | `@sqliteai/sqlite-sync-linux-arm64-musl` | |
| 45 | +| Linux | x86_64 (glibc) | `@sqliteai/sqlite-sync-linux-x86_64` | |
| 46 | +| Linux | x86_64 (musl/Alpine) | `@sqliteai/sqlite-sync-linux-x86_64-musl` | |
| 47 | +| Windows | x86_64 | `@sqliteai/sqlite-sync-win32-x86_64` | |
| 48 | + |
| 49 | +## sqlite-sync API |
| 50 | + |
| 51 | +For detailed information on how to use the sync extension features, see the [main documentation](https://github.com/sqliteai/sqlite-sync/blob/main/API.md). |
| 52 | + |
| 53 | +## Usage |
| 54 | + |
| 55 | +```typescript |
| 56 | +import { getExtensionPath } from '@sqliteai/sqlite-sync'; |
| 57 | +import Database from 'better-sqlite3'; |
| 58 | + |
| 59 | +const db = new Database(':memory:'); |
| 60 | +db.loadExtension(getExtensionPath()); |
| 61 | + |
| 62 | +// Ready to use |
| 63 | +const version = db.prepare('SELECT cloudsync_version()').pluck().get(); |
| 64 | +console.log('Sync extension version:', version); |
| 65 | +``` |
| 66 | + |
| 67 | +## Examples |
| 68 | + |
| 69 | +For complete, runnable examples, see the [sqlite-extensions-guide](https://github.com/sqliteai/sqlite-extensions-guide/tree/main/examples/node). |
| 70 | + |
| 71 | +These examples are generic and work with all SQLite extensions: `sqlite-vector`, `sqlite-sync`, `sqlite-js`, and `sqlite-ai`. |
| 72 | + |
| 73 | +## API Reference |
| 74 | + |
| 75 | +### `getExtensionPath(): string` |
| 76 | + |
| 77 | +Returns the absolute path to the SQLite Sync extension binary for the current platform. |
| 78 | + |
| 79 | +**Returns:** `string` - Absolute path to the extension file (`.so`, `.dylib`, or `.dll`) |
| 80 | + |
| 81 | +**Throws:** `ExtensionNotFoundError` - If the extension binary cannot be found for the current platform |
| 82 | + |
| 83 | +--- |
| 84 | + |
| 85 | +### `getExtensionInfo(): ExtensionInfo` |
| 86 | + |
| 87 | +Returns detailed information about the extension for the current platform. |
| 88 | + |
| 89 | +**Returns:** `ExtensionInfo` object with the following properties: |
| 90 | +- `platform: Platform` - Current platform identifier (e.g., `'darwin-arm64'`) |
| 91 | +- `packageName: string` - Name of the platform-specific npm package |
| 92 | +- `binaryName: string` - Filename of the binary (e.g., `'cloudsync.dylib'`) |
| 93 | +- `path: string` - Full path to the extension binary |
| 94 | + |
| 95 | +**Throws:** `ExtensionNotFoundError` - If the extension binary cannot be found |
| 96 | + |
| 97 | +**Example:** |
| 98 | +```typescript |
| 99 | +import { getExtensionInfo } from '@sqliteai/sqlite-sync'; |
| 100 | + |
| 101 | +const info = getExtensionInfo(); |
| 102 | +console.log(`Running on ${info.platform}`); |
| 103 | +console.log(`Extension path: ${info.path}`); |
| 104 | +``` |
| 105 | + |
| 106 | +--- |
| 107 | + |
| 108 | +### `getCurrentPlatform(): Platform` |
| 109 | + |
| 110 | +Returns the current platform identifier. |
| 111 | + |
| 112 | +**Returns:** `Platform` - One of: |
| 113 | +- `'darwin-arm64'` - macOS ARM64 |
| 114 | +- `'darwin-x86_64'` - macOS x86_64 |
| 115 | +- `'linux-arm64'` - Linux ARM64 (glibc) |
| 116 | +- `'linux-arm64-musl'` - Linux ARM64 (musl) |
| 117 | +- `'linux-x86_64'` - Linux x86_64 (glibc) |
| 118 | +- `'linux-x86_64-musl'` - Linux x86_64 (musl) |
| 119 | +- `'win32-x86_64'` - Windows x86_64 |
| 120 | + |
| 121 | +**Throws:** `Error` - If the platform is unsupported |
| 122 | + |
| 123 | +--- |
| 124 | + |
| 125 | +### `isMusl(): boolean` |
| 126 | + |
| 127 | +Detects if the system uses musl libc (Alpine Linux, etc.). |
| 128 | + |
| 129 | +**Returns:** `boolean` - `true` if musl is detected, `false` otherwise |
| 130 | + |
| 131 | +--- |
| 132 | + |
| 133 | +### `class ExtensionNotFoundError extends Error` |
| 134 | + |
| 135 | +Error thrown when the SQLite Sync extension cannot be found for the current platform. |
| 136 | + |
| 137 | +## Related Projects |
| 138 | + |
| 139 | +- **[@sqliteai/sqlite-vector](https://www.npmjs.com/package/@sqliteai/sqlite-vector)** - Vector search and similarity matching |
| 140 | +- **[@sqliteai/sqlite-ai](https://www.npmjs.com/package/@sqliteai/sqlite-ai)** - On-device AI inference and embedding generation |
| 141 | +- **[@sqliteai/sqlite-js](https://www.npmjs.com/package/@sqliteai/sqlite-js)** - Define SQLite functions in JavaScript |
| 142 | + |
| 143 | +## License |
| 144 | + |
| 145 | +This project is licensed under the [Elastic License 2.0](LICENSE.md). |
| 146 | + |
| 147 | +For production or managed service use, please [contact SQLite Cloud, Inc ](mailto:[email protected]) for a commercial license. |
| 148 | + |
| 149 | +## Contributing |
| 150 | + |
| 151 | +Contributions are welcome! Please see the [main repository](https://github.com/sqliteai/sqlite-sync) to open an issue. |
| 152 | + |
| 153 | +## Support |
| 154 | + |
| 155 | +- 📖 [Documentation](https://github.com/sqliteai/sqlite-sync/blob/main/API.md) |
| 156 | +- 🐛 [Report Issues](https://github.com/sqliteai/sqlite-sync/issues) |
0 commit comments