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

outdated

Library for interacting with CouchDB.

A library for Dart developers for work with CouchDB #

This library is under heavy development. Methods and entire classes may change in the future!

Created under a MIT-style license.

Usage #

A simple usage example:

import 'package:couchdb/couchdb.dart';

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

  try {
    final o = await dm.getAllDocs('denta');

    // Some code here

  } on CouchDbException catch (e) {
    print('$e - error');
  }
}

Overview #

Requests to the API are categorised by the different areas of the CouchDB system that you are accessing.

Exist 5 areas of API:

1. Server
2. Database
3. Documents
4. Design documents
5. Local documents

Every area (layer) contain own method for interacting with CouchDB. Detailed information you can find in official documentation site.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

With ❤️ to CouchDB

20
likes
0
pub points
21%
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