couchdb-bootstrap v15.1.0
CouchDB Bootstrap
Bootstrap CouchDB server from CLI or API.
- set and override
/_config - create databases (unless existent)
- create and update database _security objects
- create and update user accounts
- create and update design documents
- create and update replication documents
- create and update seed documents
CouchDB Bootstrap combines different small tools, which can also be used independently. Each of those tools come has a similar API and is shipped with a CLI:
- couchdb-compile - Handle sources: fs mapping / JSON / CommonJS
- couchdb-configure - Configure CouchDB
- couchdb-ensure - Create database unless exists
- couchdb-push - Push documents: users, replications, design docs and normal documents
- couchdb-secure - Secure databases: write security object
Directory
Think about CouchDB Bootstrap as a toplevel manager, which reads a directory of
databases and optional _config and hands each file over to the appropriate tool:
project/couchdb
├── _config.json
├── _replicator
│ ├── setup-alice.json
│ └── setup-bob.json
├── _users
│ ├── alice.json
│ └── bob.json
├── myapp
│ ├── _design
│ │ └── myapp.js
│ ├── _security.json
│ └── adoc.json
├── myapp-alice
│ ├── doc1.json
│ ├── doc2-commonjs.js
│ └── _security.json
└── myapp-bob
└── _security.jsonIn the directory tree above project/couchdb/_config.json is handed to
couchdb-configure,
project/couchdb/_replicator/setup-alice.json,
project/couchdb/myapp/_design/myapp.js
project/couchdb/myapp/adoc.json are handed (beside others) to
couchdb-push
and project/couchdb/myapp-alice/_security.json to
couchdb-secure.
Since couchdb-bootstrap@14.2 it is possible to provide a configuration object:
{
'my-db': {
_security: {
members: {
roles: [],
names: [
'alice@example.com'
]
},
admins: {
roles: [],
names: [
'alice@example.com'
]
}
},
mydoc: {
date: '2018-03-16T19:27:52.361Z',
title: 'Welcome'
},
_design: {
myapp: {
views: {
'by-date': {
map: function (doc) {
if ('date' in doc) {
emit(doc.date, null)
}
},
reduce: '_count'
}
}
}
}
},
_users: {
alice: {
_id: 'org.couchdb.user:alice@example.com',
type: 'user',
roles: [],
name: 'alice@example.com',
password: 'secure'
}
}
}See couchdb-compile for more details about the CouchDB Filesystem Mapping on a document / security object / config level.
API
bootstrap(url, source[, options], callback)url- CouchDB server URLsource- bootstrap object or directory holding the bootstrap treeoptions.index- When set totrue, folders are searched forindex.js, which, if present, is treated as CommonJS module. Default isfalse.options.concurrency- Limit number of concurrent requests. Defaults to100.options.multipart- When set totrue, attachments are saved via multipart api. Default isfalse.options.watch- When set totrue, documents are pushed (not_config!) on filesystem change. Default isfalse.options.mapDbName- Set toobjectorfunctionto map directories to custom database namescallback- called when done with aresponseobject describing the status of all operations.
API Example
var bootstrap = require('couchdb-bootstrap')
bootstrap('http://localhost:5984', 'project/couchdb', function(error, response) {
// here we go
})Since 14.2.0 it is possible to provide a configuration object:
var bootstrap = require('couchdb-bootstrap')
var config = {
'my-db': {
_design: {
myapp: {
views: {
'by-date': {
map: function (doc) {
if ('date' in doc) {
emit(doc.date, null)
}
},
reduce: '_count'
}
}
}
}
}
}
bootstrap('http://localhost:5984', config, function(error, response) {
//
})CLI
couchdb-bootstrap URL [SOURCE] [OPTIONS]Or use the shortcurt cdbb.
When SOURCE is omitted, the current directory will be used.
options.index is always true.
OPTIONS can be --concurrency, --multipart, --watch or --mapDbName='{"old-name": "new-name"}', see above.
CLI Example
couchdb-bootstrap http://localhost:5984 project/couchdbSource as CommonJS file:
couchdb-bootstrap http://localhost:5984 bootstrap.jsSee test/fixtures/bootstrap.js for an example.
Tests
npm test4 years ago
5 years ago
5 years ago
8 years ago
8 years ago
8 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago