1.0.0 • Published 6 years ago

couchdb-batch v1.0.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
6 years ago

couchdb-bulk

Batches a stream of single documents into bulk docs jsons.

Build
Status

Installation

npm install -g couchdb-bulk

API Usage

var bulk = require('couchdb-bulk')

process.stdin
  .pipe(bulk({ batchSize: 3, batchTime: 100 }))
  .pipe(process.stdout)

CLI Usage

couchdb-bulk docs.jsonl

Tests

npm test