crdt_hive 1.0.0-pre.4 crdt_hive: ^1.0.0-pre.4 copied to clipboard
A CRDT backed by a Hive store.
crdt_hive #
A CRDT backed by a Hive store.
Depends on the crdt package.
Usage #
A simple usage example:
import 'package:crdt_hive/crdt_hive.dart';
// TODO: Generate id on first launch
const nodeId = 'random_id';
main() async {
var crdt = await CrdtHive.open('test', nodeId);
crdt.put('x', 1);
crdt.get('x'); // 1
}