Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fjl/go-couchdb
Yet another CouchDB HTTP API wrapper for Go
https://github.com/fjl/go-couchdb
Last synced: 27 days ago
JSON representation
Yet another CouchDB HTTP API wrapper for Go
- Host: GitHub
- URL: https://github.com/fjl/go-couchdb
- Owner: fjl
- License: mit
- Created: 2013-10-28T01:08:16.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-04-09T11:19:55.000Z (8 months ago)
- Last Synced: 2024-11-08T14:22:26.465Z (about 1 month ago)
- Language: Go
- Size: 102 KB
- Stars: 59
- Watchers: 8
- Forks: 36
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go-storage - go-couchdb - Yet another CouchDB HTTP API wrapper for Go (Database Drivers)
- awesome-go - go-couchdb - Yet another CouchDB HTTP API wrapper for Go - ★ 50 (Database Drivers)
- awesome-go-storage - go-couchdb - Yet another CouchDB HTTP API wrapper for Go (Database Drivers)
README
# What's this?
go-couchdb is yet another CouchDB client written in Go.
It was written because all the other ones didn't provide
functionality that I need.The API is not fully baked at this time and may change.
This project contains three Go packages:
## package couchdb [![GoDoc](https://godoc.org/github.com/fjl/go-couchdb?status.png)](http://godoc.org/github.com/fjl/go-couchdb)
import "github.com/fjl/go-couchdb"
This wraps the CouchDB HTTP API.
## package couchapp [![GoDoc](https://godoc.org/github.com/fjl/go-couchdb?status.png)](http://godoc.org/github.com/fjl/go-couchdb/couchapp)
import "github.com/fjl/go-couchdb/couchapp"
This provides functionality similar to the original
[couchapp](https://github.com/couchapp/couchapp) tool,
namely compiling a filesystem directory into a JSON object
and storing the object as a CouchDB design document.## package couchdaemon [![GoDoc](https://godoc.org/github.com/fjl/go-couchdb?status.png)](http://godoc.org/github.com/fjl/go-couchdb/couchdaemon)
import "github.com/fjl/go-couchdb/couchdaemon"
This package contains some functions that help
you write Go programs that run as a daemon started by CouchDB,
e.g. fetching values from the CouchDB config.# Tests
You can run the unit tests with `go test`.
[![Build Status](https://travis-ci.org/fjl/go-couchdb.png?branch=master)](https://travis-ci.org/fjl/go-couchdb)