
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@ddatabase/byte-stream
Advanced tools
A Readable stream wrapper around DDatabase that supports reading byte ranges.
A Readable stream wrapper around dDatabase 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 dDrive.
The following example will return a byte stream of the entire input feed.
const ram = require('random-access-memory')
const ddatabase = require('ddatabase')
const createByteStream = require('@ddatabase/byte-stream')
let base = ddatabase(ram)
let stream = createByteStream({
feed: base
})
stream = createStream([options])Creates a new byte stream.
If specified, options can include:
{
feed: base, // A dDatabase.
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.
MIT
FAQs
A Readable stream wrapper around DDatabase that supports reading byte ranges.
We found that @ddatabase/byte-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.