1.0.0 • Published 6 years ago

level-count v1.0.0

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

level-count

Count the KV pairs in a leveldb range, with optional live mode.

Usage

Count once:

count(db, { gt: 'prefix' }, (err, c) => {
  // ...
})

Count continuously:

const counts = count.live(db, { gt: 'prefix' })
counts.on('value', c => {
  // ...
})
const c = counts.get()

Installation

$ npm install level-count

API

count(db, opts, cb)

counts = count(db, opts)

counts.get()

counts.on('count', fn)

counts.destroy()

License

MIT