@livestore/livestore 0.0.0-snapshot-1caef03b314d2ae0364a429e9709b165c4d04bc7 → 0.0.0-snapshot-2644d9c5fe61773f96690c0a4fafecebdc5f4147
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +36 -4
- package/dist/.tsbuildinfo +1 -1
- package/package.json +5 -5
package/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2025 Overengineering Studio
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -1,13 +1,45 @@
|
|
|
1
|
-
|
|
1
|
+

|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## What LiveStore does
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- 🏰 Provide a powerful data foundation for your app.
|
|
6
|
+
- ⚡ Reactive query layer with full SQLite support.
|
|
7
|
+
- 🔌 Adapters for most platforms (web, mobile, server/edge, desktop).
|
|
8
|
+
- 📐 Flexible data modeling and schema management.
|
|
9
|
+
- 📵 Support true offline-first workflows.
|
|
10
|
+
- 💥 Custom merge conflict resolution.
|
|
11
|
+
- 🔄 Sync with a [supported provider](https://docs.livestore.dev/reference/syncing/sync-provider/cloudflare/) or roll your own.
|
|
6
12
|
|
|
7
|
-
|
|
13
|
+
## Getting Started
|
|
8
14
|
|
|
15
|
+
- [React Web](https://docs.livestore.dev/getting-started/react-web/)
|
|
16
|
+
- [Expo](https://docs.livestore.dev/getting-started/expo/)
|
|
17
|
+
- [Node](https://docs.livestore.dev/getting-started/node/)
|
|
18
|
+
- [Vue](https://docs.livestore.dev/getting-started/vue/)
|
|
9
19
|
|
|
10
20
|
|
|
21
|
+
## How LiveStore works
|
|
22
|
+
|
|
23
|
+
LiveStore is a fully-featured, client-centric data layer (replacing libraries like Redux, MobX, etc.) with a reactive embedded SQLite database powered by real-time sync (via event-sourcing).
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+
1. Instant, reactive queries to your local SQLite database (via built-in query builder or raw SQL).
|
|
28
|
+
2. Data changes are commited to the store, applied instantly and synced across clients.
|
|
29
|
+
3. Change events are persisted locally and synced across clients (and across tabs).
|
|
30
|
+
4. Events are instantly applied to the local database via materializers.
|
|
31
|
+
5. Query results are reactively and synchronously updated in the next render.
|
|
32
|
+
6. The LiveStore sync backend propagates changes to all connected clients.
|
|
33
|
+
|
|
34
|
+
If you’d like to learn more about how LiveStore works under the hood, feel free to check out our in-depth guides in the [documentation](https://docs.livestore.dev/evaluation/how-livestore-works/) and dive into topics like:
|
|
35
|
+
|
|
36
|
+
- [Concepts](https://docs.livestore.dev/reference/concepts/)
|
|
37
|
+
- [Event Sourcing](https://docs.livestore.dev/evaluation/event-sourcing/)
|
|
38
|
+
- [Design Decisions](https://docs.livestore.dev/evaluation/design-decisions/)
|
|
39
|
+
- [Performance](https://docs.livestore.dev/evaluation/performance/)
|
|
40
|
+
- [Date Modeling](https://docs.livestore.dev/data-modeling/)
|
|
41
|
+
- [Technology comparison](https://docs.livestore.dev/evaluation/technology-comparison/)
|
|
42
|
+
|
|
11
43
|
## License
|
|
12
44
|
|
|
13
45
|
Livestore is licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|