
Security News
crates.io Ships Security Tab and Tightens Publishing Controls
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.
Addressable batches of data on top of a Hypercore
npm install hyperbatch
const Hyperbatch = require('hyperbatch')
const b = new Hyperbatch(feed) // pass a hypercore
// append some batches
await b.append([
Buffer.from('block #0'),
Buffer.from('block #1')
])
await b.append([
Buffer.from('block #2'),
Buffer.from('block #3'),
Buffer.from('block #4')
])
await b.append([
Buffer.from('block #5')
])
// how many batches are appended?
await b.length()
// how much data in all batches?
await b.byteLength()
// get a batch
const batch = await b.get(1) // get the second batch
console.log(batch.length) // 3 entries
const block = await batch.get(0) // 'block #2'
const block = await batch.get(1) // 'block #3'
MIT
FAQs
Addressable batches of data on top of a Hypercore
The npm package hyperbatch receives a total of 0 weekly downloads. As such, hyperbatch popularity was classified as not popular.
We found that hyperbatch 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
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.

Research
/Security News
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.