Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 735 Bytes

README.md

File metadata and controls

49 lines (33 loc) · 735 Bytes

flumeview-array

simple flumeview built on flumelog-array

Table of Contents

Install

npm install flumeview-array

Usage

const Log = require('flumelog-array')
const Flume = require('flumedb')
const View = require('flumeview-array')

var db = Flume(Log())

db.use('bool', View(x => !!x))

db.append({foo: 1}, function (err, seq) {
  if (err) throw err
  db.bool.get(seq, (err, val) => {
    if (err) throw err
    console.log(val) // => true
  })
})

Maintainers

@fraction

Contributing

PRs accepted.

License

ISC © 2018 Fraction LLC