1.7.10 • Published 9 years ago
rx-couch v1.7.10
rx-couch

RxJS-flavored APIs for CouchDB
IMPORTANT: This library only supports RxJS 4.x.
Looking for RxJS 5.0+ support? Try rxjs-couch. (Same name but replace 'rx' with 'rxjs'.)
Installation
NPM
npm install --save rx-couch
Usage
const RxCouch = require('rx-couch');
const server = new RxCouch('http://my.host:5984');
// List all databases on the server.
// http://docs.couchdb.org/en/latest/api/server/common.html#all-dbs
server.allDatabases()
.subscribe(databases => console.log(databases));
// -> ['_replicator', '_users', 'my-database', etc...]
// Create a database. By default, this will ignore 412 errors on the assumption
// that this means "database already exists."
// http://docs.couchdb.org/en/latest/api/database/common.html#put--db
server.createDatabase('test-rx-couch')
.subscribeOnCompleted(); // fires when done
// Create a database and fail if the database already exists.
// http://docs.couchdb.org/en/latest/api/database/common.html#put--db
server.createDatabase('test-rx-couch', {failIfExists: true})
.subscribeOnError(); // In this example, an error event would be sent.
// Delete a database.
// http://docs.couchdb.org/en/latest/api/database/common.html#delete--db
server.deleteDatabase('some-other-database')
.subscribeOnCompleted(); // fires when done
// Replicate a database.
// http://docs.couchdb.org/en/latest/api/server/common.html#replicate
server.replicate({source: 'db1', target: 'db2'})
.subscribe(status => console.log(status));
// -> {history: [...], ok: true, etc...}
// Create a database object to interact with a single database on the server.
// WARNING: Does not create the database. See .createDatabase above.
const db = server.db('test-rx-couch');
// Create a new document and let CouchDB assign an ID.
// http://docs.couchdb.org/en/latest/api/database/common.html#post--db
db.put({foo: 'bar'})
.subscribe(result => console.log(result));
// -> {id: '(random)', ok: true, rev: '1-(random)'}
// Create a new document using an ID that I choose.
// http://docs.couchdb.org/en/latest/api/document/common.html#put--db-docid
db.put({_id: 'testing123', foo: 'bar'})
.subscribe(result => console.log(result));
// -> {id: 'testing123', ok: true, rev: '1-(random)'}
// Update an existing document, replacing existing value
// http://docs.couchdb.org/en/latest/api/document/common.html#put--db-docid
db.put({_id: 'testing123', _rev: '1-existingRevId', foo: 'baz'})
.subscribe(result => console.log(result));
// -> {id: 'testing123', ok: true, rev: '2-(random)'}
// Update an existing document, merging new content into existing value.
db.update({_id: 'testing123', flip: true})
.subscribe(result => console.log(result));
// -> {id: 'testing123', ok: true, 'rev': '3-(random)'}
// Update an existing document, replacing existing value, but avoiding
// write if new value exactly matches existing.
db.replace({_id: 'testing123', flip: true})
.subscribe(result => console.log(result));
// -> {id: 'testing123', ok: true, rev: '3-(random)', noop: true}
// Get the current value of an existing document.
// http://docs.couchdb.org/en/latest/api/document/common.html#get--db-docid
db.get('testing123')
.subscribe(result => console.log(result));
// -> {_id: 'testing123', _rev: '3-(random)', foo: 'baz', flip: true}
// Get the value of an existing document with query options.
// All options described under query parameters below are supported:
// http://docs.couchdb.org/en/latest/api/document/common.html#get--db-docid
db.get('testing123', {rev: '1-existingRevId'})
.subscribe(result => console.log(result));
// -> {_id: 'testing123', _rev: '1-(random)', foo: 'baz'}
// Observe the value of an existing document over time.
// Returns the current document value soon after the call is issued
// and monitors the value until the subscription is terminated.
// Use this sparingly; having many of these open at once could lead to
// unacceptable server load.
db.observe('testing123')
.subscribe(result => console.log(result));
// -> one or more results of the form
// {_id: 'testing123', _rev: '1-(random)', foo: 'baz'}
// Get information about several documents at once.
// All options described under query parameters below are supported:
// http://docs.couchdb.org/en/latest/api/database/bulk-api.html#get--db-_all_docs
db.allDocs({startkey: 'testing123'})
.subscribe(result => console.log(result));
// -> {offset: 0, rows: {...}, total_rows: 5}
// Delete an existing document. Both arguments (doc ID and rev ID) are required.
// http://docs.couchdb.org/en/latest/api/document/common.html#put--db-docid
db.delete('testing123', '3-latestRevId')
.subscribe(result => console.log(result));
// -> {id: 'testing123', ok: true, rev: '4-(random)'}
// Replicate from another database into this database.
// http://docs.couchdb.org/en/latest/api/server/common.html#replicate
db.replicateFrom({source: 'db1'})
.subscribe(status => console.log(status));
// -> {history: [...], ok: true, etc...}
// Monitor changes to the database.
// http://docs.couchdb.org/en/latest/api/database/changes.html
db.changes({include_docs: true})
.subscribe(result => console.log(result));
// -> any number of result objects of the form (one per document):
// {
// "changes": [
// {
// "rev": "2-7051cbe5c8faecd085a3fa619e6e6337"
// }
// ],
// "id": "6478c2ae800dfc387396d14e1fc39626",
// "seq": 6
// }
//
// The exact form of the responses will vary depending on the
// options specified.
//
// If feed: "longpoll" appears in the options object, the changes
// feed is monitored continuously until the subscription is dropped.
// It is an error to use feed: "continuous".
If any HTTP errors occur, they will be reported via onError
notification on
the Observable using the HTTP error object from rx-fetch.
License
MIT
1.7.10
9 years ago
1.7.9
9 years ago
1.7.8
9 years ago
1.7.7
9 years ago
1.7.6
9 years ago
1.7.5
9 years ago
1.7.4
9 years ago
1.7.3
9 years ago
1.7.2
9 years ago
1.7.1
9 years ago
1.7.0
9 years ago
1.6.7
9 years ago
1.6.6
9 years ago
1.6.5
9 years ago
1.6.4
9 years ago
1.6.3
9 years ago
1.6.2
9 years ago
1.6.1
9 years ago
1.6.0
9 years ago
1.5.4
9 years ago
1.5.3
9 years ago
1.5.2
9 years ago
1.5.1
9 years ago
1.5.0
9 years ago
1.4.0
10 years ago
1.3.2
10 years ago
1.3.1
10 years ago
1.3.0
10 years ago
1.2.0
10 years ago
1.1.1
10 years ago
1.1.0
10 years ago
1.0.0
10 years ago