hive_crdt 1.0.1-nullsafety.1 hive_crdt: ^1.0.1-nullsafety.1 copied to clipboard
Dart implementation of Conflict-free Replicated Data Types (CRDTs), backed by a Hive store.
hive_crdt #
A CRDT backed by a Hive store.
Depends on the crdt package.
Usage #
A simple usage example:
import 'package:hive_crdt/hive_crdt.dart';
// TODO: Generate id on first launch
const nodeId = 'random_id';
main() async {
var crdt = await HiveCrdt.open('test', nodeId);
crdt.put('x', 1);
crdt.get('x'); // 1
}