A ephemeral CouchDB-like database
'use strict'
var scratchdb = require('scratchdb')
function done (server) {
console.log('scratchdb running on port', server.address().port)
// => scratchdb running on port 5985
}
scratchdb(done)
Useful when you just want to spin up a throwaway CouchDB instance; no Futon/Fauxton, no auth, no persistence.
You should probably use pouchdb-server when you need more.
scratchdb([callback[, opts]])
A net.Server instance is passed to (an optional) callback
when the server
has been bound.
Additionally, pass an opts
object to configure the server options.
[PORT] scratchdb
# scratchdb running at http://0.0.0.0:5985
Option | Description | Default |
---|---|---|
port |
The port scratchdb binds to | 5985 |
© 2015 Tom Vincent npm@tlvince.com
Released under the MIT License.