cbl 0.4.1+1 cbl: ^0.4.1+1 copied to clipboard
CouchbaseLite for Dart based on the C API. A NoSQL database with change notification, full text search and replication.
import 'dart:io';
import 'package:cbl/cbl.dart';
/// You need to specify how to access the native libraries, on top of which
/// `cbl` is implemented.
///
/// For Flutter apps you can get the [Libraries] from the `cbl_flutter` package
/// from the `flutterLibraries` function.
Libraries getLibraries() {
throw UnimplementedError('TODO');
}
Future<void> main() async {
// The `cbl` package needs to be initialized before it can be used.
CouchbaseLite.initialize(libraries: getLibraries());
// Now open a database.
final db = await Database.open(
'DB',
config: DatabaseConfiguration(directory: Directory.current.path),
);
// To create a new document start with an empty [MutableDocument] and fill
// its properties.
final doc = MutableDocument()
..properties.addAll({
'type': 'message',
'body': 'Heyo',
'from': 'Alice',
});
// Saving a document will return an immutable [Document].
final savedDoc = await db.saveDocument(doc);
print(savedDoc);
print(savedDoc.properties);
await db.close();
}