Socket
Socket
Sign inDemoInstall

hypercore-byte-stream

Package Overview
Dependencies
5
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hypercore-byte-stream

A Readable stream wrapper around Hypercore that supports reading byte ranges.


Version published
Weekly downloads
7
decreased by-61.11%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

hypercore-byte-stream

Build Status

A Readable stream wrapper around Hypercore that supports reading byte ranges.

When provided with optional start/end block heuristics, this module will efficiently sync only those blocks which contain the specified range.

Supports asynchronously specifying stream options, as well as the input feed, to remove the need for additional stream management modules like duplexify.

Most of the code has been extracted from Hyperdrive.

Usage

The following example will return a byte stream of the entire input feed.

const ram = require('random-access-memory')
const hypercore = require('hypercore')
const createByteStream = require('hypercore-byte-stream')

let core = hypercore(ram)
let stream = createByteStream({
  feed: core
})

API

stream = createStream([options])

Creates a new byte stream.

If specified, options can include:

{
  feed: core, // A hypercore.
  byteOffset: 0, // Starting offset in bytes from the start of the feed.
  byteLength: 10, // The number of bytes to read.
  blockOffset: 0, // An optional starting block heuristic (optimization).
  blockLength: 10 // An optional block length that should contain the entire range (optimization).
}

stream.start([options])

Starts downloading and streaming according to the specified options.

Options are the same as in createStream. If a feed was specified in the stream constructor, then one should not provide another stream in the start options.

License

MIT

Keywords

FAQs

Last updated on 12 Jul 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc