6.0.2 • Published 10 years ago

pouchdb-http v6.0.2

Weekly downloads
71
License
Apache-2.0
Repository
github
Last release
10 years ago

pouchdb-http

PouchDB as an HTTP-only package.

The pouchdb-http preset only contains the HTTP adapter, i.e. the adapter that allows PouchDB to talk to CouchDB using the format new PouchDB('http://127.0.0.1:5984/mydb').

Use this preset if you only want to use PouchDB as an interface to CouchDB (or a Couch-compatible server).

Usage

npm install pouchdb-http
var PouchDB = require('pouchdb-http');
var db = new PouchDB('http://127.0.0.1:5984/mydb');

Note that this preset doesn't come with map/reduce (i.e. the query() API). If you want that, then you should do:

var PouchDB = require('pouchdb-http')
  .plugin(require('pouchdb-mapreduce'));

For full API documentation and guides on PouchDB, see PouchDB.com. For details on PouchDB sub-packages, see the Custom Builds documentation.

6.0.2

10 years ago

5.4.6

10 years ago

6.0.1

10 years ago

6.0.0

10 years ago

5.4.5

10 years ago

5.4.4

10 years ago

5.4.3

10 years ago

5.4.2

10 years ago

5.4.1

10 years ago

5.4.0

10 years ago

0.0.0

10 years ago