crdt_hive 1.0.0-pre.4 copy "crdt_hive: ^1.0.0-pre.4" to clipboard
crdt_hive: ^1.0.0-pre.4 copied to clipboard

discontinuedreplaced by: hive_crdt

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
}