couchdb 0.0.1 copy "couchdb: ^0.0.1" to clipboard
couchdb: ^0.0.1 copied to clipboard

outdated

Library for interacting with CouchDB.

example/couchdb_example.dart

import 'package:couchdb/couchdb.dart';

Future<void> main() async {
  final c = CouchDbServerClient(username: 'name', password: 'pass');
  final dm = DatabaseModel(c);

  try {
    final o = await dm.dbInfo('denta');
    print('$o - success');
  } on CouchDbException catch (e) {
    print('$e - error');
  }
  
}
20
likes
0
pub points
8%
popularity

Publisher

unverified uploader

Library for interacting with CouchDB.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta

More

Packages that depend on couchdb