0.4.0 • Published 4 years ago

@sukurapa/writer-couch v0.4.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Synopsis

CouchDB writer based on nano for Sukurapa.

Code Example

The CouchDB writer takes a connection string and a store name. If the store does not exist it'll be created on the first run.

There's also the option to delete the store before each run.

const CouchWriter = require('@sukurapa/writer-couch');

const instance = new CouchWriter({
    "connection": "http://127.0.0.1:5984", // The connections string (mandatory)
    "storeName": "my_store", // The store name (mandatory)
    "deleteOnStart": false // whether to delete the store before starting (default: false)
});

Installation

Install using NPM:

npm install @sukurapa/writer-couch

License

Licensed under the MIT license