crdt 1.2.2 copy "crdt: ^1.2.2" to clipboard
crdt: ^1.2.2 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
40
points
536
downloads

Publisher

verified publishercachapa.net

Weekly Downloads

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

Repository (GitHub)
View/report issues
Contributing

License

Apache-2.0 (license)

More

Packages that depend on crdt