
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
blind-peering
Advanced tools
Client for interacting with blind peers, sending RPC requests to keep hypercores and autobases available.
npm install blind-peering
const blindPeering = new BlindPeering(swarm, store, opts)Create a new Blind Peering instance. swarm is a hyperswarm instance and store is a Corestore instance.
opts include:
mirrors: a list of blind peer keys (mirrors) to use. You should always set this, otherwise there are no mirrors to contact.suspended: whether to start in suspended state (default false)wakeup: a Wakeup objectawait blindPeering.addCore(core, target = core.key, opts)Add a Hypercore to a blind peer.
target is an optional key. It looks for blind peers 'close' (using XOR distance) to that key. It defaults to the key of the hypercore, thereby load balancing among the available blind peers. To use a specific blind peer, set target to its key.
opts include:
announce: whether the hypercore should be announced to the swarm (default false)mirrors: how many blind peers to contact. Defaults to 1.referrer: key of a referrer hypercore to pass to the blind peerpriority: integer indicating the priority to request. See Blind Peer for the possibilitiesblindPeering.addCoreBackground(core, target = core.key, opts)Same as addCore, but is sync (it runs in the background).
await blindPeering.addAutobase(base, target)Add an autobase to a blind peer.
base is an Autobase instance.
target is an optional key. It looks for blind peers 'close' (using XOR distance) to that key. It defaults to the autobase's wakeupCapability.key.
blindPeering.addAutobaseBackground(base, target)Add an autobase to a blind peer (runs in the background).
base is an Autobase instance.
target is an optional key. It looks for blind peers 'close' (using XOR distance) to that key. It defaults to the autobase's wakeupCapability.key.
await blindPeering.suspend()Suspend all activity.
await blindPeering.resume()Resume activity after having been suspended.
await blindPeering.close()Close the blind peering instance.
FAQs
Request blind peers to keep hypercores and autobases available
The npm package blind-peering receives a total of 906 weekly downloads. As such, blind-peering popularity was classified as not popular.
We found that blind-peering demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.