Simple, light and correct LevelDB live read stream implementation.
const stream = new Live(db, { gt: 'prefix' })
stream.on('data', ({ type, key, value }) => {
// ...
})
$ npm install level-live
opts
can be a levelup style range object with any of those options:
gt
gte
lt
lte
start
end
MIT