Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.

v2.0.0

Choose a tag to compare

@gr2m gr2m released this 04 Aug 03:59

<a name"2.0.0">

2.0.0 (2015-08-04)

Features

Breaking Changes

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)