crdt 1.1.0 copy "crdt: ^1.1.0" to clipboard
crdt: ^1.1.0 copied to clipboard

outdated

Dart implementation of Conflict-free Replicated Data Types (CRDTs).

example/crdt_example.dart

import 'package:crdt/crdt.dart';

void main() {
  var crdt = Crdt(MapStore({}));
  crdt.put('a', 1);
  print(crdt.get('a')); // 1
}
72
likes
0
points
536
downloads

Publisher

verified publishercachapa.net

Weekly Downloads

Dart implementation of Conflict-free Replicated Data Types (CRDTs).

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on crdt