Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cachapa/postgres_crdt
Dart implementation of Conflict-free Replicated Data Types (CRDTs) using PostgreSQL
https://github.com/cachapa/postgres_crdt
crdt dart database flutter postgres postgresql sql
Last synced: about 2 months ago
JSON representation
Dart implementation of Conflict-free Replicated Data Types (CRDTs) using PostgreSQL
- Host: GitHub
- URL: https://github.com/cachapa/postgres_crdt
- Owner: cachapa
- License: apache-2.0
- Created: 2023-04-12T08:17:53.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-15T18:30:29.000Z (8 months ago)
- Last Synced: 2024-03-15T19:43:59.282Z (8 months ago)
- Topics: crdt, dart, database, flutter, postgres, postgresql, sql
- Language: Dart
- Homepage: https://pub.dev/packages/postgres_crdt
- Size: 112 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Dart implementation of Conflict-free Replicated Data Types (CRDTs) using PostgreSQL.
This package implements [sql_crdt](https://github.com/cachapa/sql_crdt).## Setup
Awaiting async functions is extremely important and not doing so can result in all sorts of weird behaviour.
You can avoid them by activating the `unawaited_futures` linter warning in *analysis_options.yaml*:```yaml
linter:
rules:
unawaited_futures: true
```This package uses [postgres](https://pub.dev/packages/postgres) and requires a working PostgreSQL instance.
## Usage
Check [example.dart](https://github.com/cachapa/postgres_crdt/blob/master/example/example.dart) for more details.
## Features and bugs
Please file feature requests and bugs in the [issue tracker](https://github.com/cachapa/postgres_crdt/issues).