level-live-stream
Stream live changes from levelup.

Works just like LevelUp#readStream
except instead of ending, it will stay open and stream changes to the database as they are inserted!
Just like the couchdb changes feed, but for any arbitary range of keys!
see also, level-livefeed for the same idea,
but with a streams2 api.
var level = require('level')
level('/tmp/level-live-stream',
{createIfMissing: true}, function (err, db) {
var liveStream = require('level-live-stream')(db)
liveStream
.on('data', console.log)
setInterval(function () {
db.put('time', new Date().toString())
}, 1000)
})
options
LiveStream(db, {
tail: true,
old : true,
min : loKey,
max : hiKey,
reverse: true
})
License
MIT