
Security News
n8n Tops 2025 JavaScript Rising Stars as Workflow Platforms Gain Momentum
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.
hypercore-multi-key
Advanced tools
Function that takes a hypercore and returns a new one that is signed by a new key pair but backed by the same data
Function that takes a hypercore and returns a new one that is signed by a new key pair but backed by the same data.
npm install hypercore-multi-key
Useful if you want to do one-off sharing of a hypercore
const multiKey = require('hypercore-multi-key')
// returns a new feed that is identical as the one passed
// but signed by a new key pair
const newFeed = multiKey(feed)
feed.append('hello')
newFeed.get(0, console.log) // returns 'hello'
newFeed = multiKey(feed, [keyPair], [options])Create a new hypercore that is backed by the same data as another one but signed by a new key pair.
You can replicate this new one to other people just like you would any other hypercore.
If you want to use a specific new key pair pass it in as the 2nd arguments. Otherwise a random one is generated.
All options are passed to the hypercore constructor.
MIT
FAQs
Function that takes a hypercore and returns a new one that is signed by a new key pair but backed by the same data
The npm package hypercore-multi-key receives a total of 1 weekly downloads. As such, hypercore-multi-key popularity was classified as not popular.
We found that hypercore-multi-key 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
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.