Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
multi-writer hypercore
Small module that manages multiple hypercores: feeds you create locally are writeable, others' are readonly. Replicating with another multifeed peers exchanges the content of all of the hypercores.
var multifeed = require('multifeed')
var hypercore = require('hypercore')
var ram = require('random-access-memory')
var multi = multifeed(hypercore, './db', { valueEncoding: 'json' })
// a multifeed starts off empty
console.log(multi.feeds().length) // => 0
// create as many writeable feeds as you want; returns hypercores
multi.writer('local', function (err, w) {
console.log(w.key, w.writeable, w.readable) // => Buffer <0x..> true true
console.log(multi.feeds().length) // => 1
// write data to any writeable feed, just like with hypercore
w.append('foo', function () {
var m2 = multifeed(hypercore, ram, { valueEncoding: 'json' })
m2.writer('local', function (err, w2) {
w2.append('bar', function () {
replicate(multi, m2, function () {
console.log(m2.feeds().length) // => 2
m2.feeds()[1].get(0, function (_, data) {
console.log(data) // => foo
})
multi.feeds()[1].get(0, function (_, data) {
console.log(data) // => bar
})
})
})
})
})
})
function replicate (a, b, cb) {
var r = a.replicate()
r.pipe(b.replicate()).pipe(r)
.once('end', cb)
.once('error', cb)
}
var multifeed = require('multifeed')
Pass in the a hypercore module (require('hypercore')
), a
random-access-storage
backend, and options. Included opts
are passed into new hypercores created,
and are the same as
hypercore's.
Valid opts
include:
opts.key
(string): optional encryption key to use during replication.If no name
is given, a new local writeable feed is created and returned via
cb
.
If name
is given and was created in the past on this local machine, it is
returned. Otherwise it is created. This is useful for managing multiple local
feeds, e.g.
var main = multi.writer('main') // created if doesn't exist
var content = multi.writer('content') // created if doesn't exist
main === multi.writer('main') // => true
An array of all hypercores in the multifeed. Check a feed's key
to
find the one you want, or check its writable
/ readable
properties.
Only populated once multi.ready(fn)
is fired.
Fetch a feed by its key key
(a Buffer
or hex string).
Create a duplex stream for replication.
Works just like hypercore, except all local hypercores are exchanged between replication endpoints.
Note: this stream is not an encrypted channel.
Emitted whenever a new feed is added, whether locally or remotely.
Close all file resources being held by the multifeed instance. cb
is called once this is complete.
NOTE: Once a multifeed is closed, use of the rest of the API is basically undefined behaviour.
true
if close()
was run successfully, falsey otherwise.
The duplex stream returned by .replicate()
can emit, in addition to regular
stream errors, two fatal errors specific to multifeed:
ERR_VERSION_MISMATCH
err.code = 'ERR_VERSION_MISMATCH'
err.usVersion = 'X.Y.Z'
(semver)err.themVersion = 'A.B.C'
(semver)ERR_CLIENT_MISMATCH
err.code = 'ERR_CLIENT_MISMATCH'
err.usClient = 'MULTIFEED'
err.themClient = '???'
With npm installed, run
$ npm install multifeed
ISC
FAQs
multi-writer hypercore
We found that multifeed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers 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
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.