0.1.1 • Published 6 years ago
@rplan/couchbase v0.1.1
@rplan/couchbase
Introduction
This a simple couchbase wrapper that provides:
- a couchbase bucket configuration through @rplan/config
- a bucket with following methods promisified
get
getMulti
upsert
insert
replace
remove
query
ping
- implements
find
that behaves like aget
, but returns null if key is not found - implements
findMulti
that is agetMulti
, but returns an error object for each key that is not found - implements
isHealthy
, that pings the configured bucket - implements a mocha test-helper
useMockedCouchbaseInTests
that points the couchbase to acouchbase.Mock
instance during runtime - the following methods are just pass through, because there not async
disconnect
- custom errors
KeyNotFoundError
is thrown on error with code couchbase.errors.keyNotFound - custom errors
KeyAlreadyExistsError
is thrown on error with code couchbase.errors.keyAlreadyExists
Usage
import { bucket } from '@rplan/couchbase'
async function foo() {
await bucket().insert('foo', { bar: true })
const foo = await bucket().get('foo') // { value: { bar: true } }
}
Usage of test-helper
import { bucket } from '@rplan/couchbase'
import { useMockedCouchbaseInTests } from '@rplan/couchbase/lib/test-helper'
describe('some test', () => {
useMockedCouchbaseInTests()
it('should work', async () => {
await bucket().insert('a', { foo: 1 })
// ...
})
})