Socket
Socket
Sign inDemoInstall

level-iterator-stream

Package Overview
Dependencies
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

level-iterator-stream

Turn a leveldown iterator into a readable stream


Version published
Weekly downloads
540K
increased by16.46%
Maintainers
3
Weekly downloads
 
Created
Source

level-iterator-stream

Turn a leveldown iterator into a readable stream

level badge npm Node version Build Status dependencies JavaScript Style Guide npm

Usage

If you are upgrading: please see UPGRADING.md.

var iteratorStream = require('level-iterator-stream')
var leveldown = require('leveldown')

var db = leveldown(__dirname + '/db')
db.open(function (err) {
  if (err) throw err

  var stream = iteratorStream(db.iterator())
  stream.on('data', function (kv) {
    console.log('%s -> %s', kv.key, kv.value)
  })
})

Installation

$ npm install level-iterator-stream

API

stream = iteratorStream(iterator[, options])

Create a readable stream from iterator. options are passed down to the require('readable-stream').Readable constructor, with objectMode forced to true.

Set options.keys or options.values to false to only get values / keys. Otherwise receive { key, value } objects.

When the stream ends, the iterator will be closed and afterwards a "close" event emitted.

.destroy() will force close the underlying iterator.

License

Copyright © 2012-present level-iterator-stream contributors.

level-iterator-stream is licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.

FAQs

Package last updated on 28 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc