• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

chttp/H11-Jan-2018-

test/H11-Jan-2018-

travis/H11-Jan-2018-

.gitignoreH A D11-Jan-201822

.linter.jsonH A D11-Jan-2018187

.travis.ymlH A D11-Jan-2018932

LICENSE.mdH A D11-Jan-2018558

README.mdH A D11-Jan-20181.2 KiB

attachments.goH A D11-Jan-20184.1 KiB

attachments_test.goH A D11-Jan-201818.9 KiB

auth.goH A D11-Jan-20181.3 KiB

auth_test.goH A D11-Jan-20181.7 KiB

bulk.goH A D11-Jan-20182.5 KiB

bulk_test.goH A D11-Jan-20186.4 KiB

changes.goH A D11-Jan-20181.3 KiB

changes_test.goH A D11-Jan-20183 KiB

client.goH A D11-Jan-20181.8 KiB

client_test.goH A D11-Jan-20187.8 KiB

codecov.ymlH A D11-Jan-201824

constants.goH A D11-Jan-2018670

couchdb.goH A D11-Jan-20182.9 KiB

couchdb_test.goH A D11-Jan-20185.1 KiB

db.goH A D11-Jan-201811.7 KiB

db_test.goH A D11-Jan-201850 KiB

errors.goH A D11-Jan-2018206

find.goH A D11-Jan-20183.4 KiB

find_test.goH A D11-Jan-201811.8 KiB

glide.yamlH A D11-Jan-2018473

main_js_test.goH A D11-Jan-2018221

mock_test.goH A D11-Jan-20181.9 KiB

options.goH A D11-Jan-2018922

options_test.goH A D11-Jan-20183.1 KiB

replication.goH A D11-Jan-20188.4 KiB

replication_test.goH A D11-Jan-201821.7 KiB

rows.goH A D11-Jan-20183.9 KiB

rows_test.goH A D11-Jan-20184.1 KiB

scheduler.goH A D11-Jan-20185.4 KiB

scheduler17.goH A D11-Jan-20181.3 KiB

scheduler17_test.goH A D11-Jan-2018905

scheduler_test.goH A D11-Jan-201821.7 KiB

session.goH A D11-Jan-20181.2 KiB

session_test.goH A D11-Jan-20181.8 KiB

util.goH A D11-Jan-2018548

util_test.goH A D11-Jan-20181.2 KiB

version.goH A D11-Jan-2018884

version_test.goH A D11-Jan-20183.7 KiB

README.md

1[![Build Status](https://travis-ci.org/go-kivik/couchdb.svg?branch=master)](https://travis-ci.org/go-kivik/couchdb) [![Codecov](https://img.shields.io/codecov/c/github/go-kivik/couchdb.svg?style=flat)](https://codecov.io/gh/go-kivik/couchdb) [![GoDoc](https://godoc.org/github.com/go-kivik/couchdb?status.svg)](http://godoc.org/github.com/go-kivik/couchdb)
2
3# Kivik CouchDB
4
5CouchDB driver for [Kivik](https://github.com/go-kivik/couchdb).
6
7## Usage
8
9This package provides an implementation of the
10[`github.com/go-kivik/kivik/driver`](http://godoc.org/github.com/go-kivik/kivik/driver)
11interface. You must import the driver and can then use the full
12[`Kivik`](http://godoc.org/github.com/go-kivik/kivik) API. Please consult the
13[Kivik wiki](https://github.com/go-kivik/kivik/wiki) for complete documentation
14and coding examples.
15
16```go
17package main
18
19import (
20    "context"
21
22    "github.com/go-kivik/kivik"
23    _ "github.com/go-kivik/couchdb" // The CouchDB driver
24)
25
26func main() {
27    client, err := kivik.New(context.TODO(), "pouch", "")
28    // ...
29}
30```
31
32## License
33
34This software is released under the terms of the Apache 2.0 license. See
35LICENCE.md, or read the [full license](http://www.apache.org/licenses/LICENSE-2.0).
36