This repository was archived by the owner on May 3, 2026. It is now read-only.
v2.0.0
<a name"2.0.0">
2.0.0 (2015-08-04)
Features
Breaking Changes
- options have changed to support levelup storage
back-ends
Before:
spawnPouchdbServer({
port: 5985,
databaseDir: './.db',
log: {
file: './.db/pouch.log'
}
}, function (error) {
console.log('PouchDB Server stared at localhost:5985/_utils')
})After:
spawnPouchdbServer({
port: 5985,
directory: './.db',
backend: {
name: 'leveldown',
dir: './.db'
},
log: {
file: './.db/pouch.log',
level: 'info'
},
config: {
file: './.db/config.json'
}
}, function (error) {
console.log('PouchDB Server stared at localhost:5985/_utils')
})(714b6d2b)