/hive_crdt

A CRDT backed by a Hive store

Primary LanguageDartApache License 2.0Apache-2.0

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
}