Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blob-store-replication-stream

Package Overview
Dependencies
Maintainers
5
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blob-store-replication-stream

replicate two abstract-blob-store compatible stores together

  • 1.3.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-50%
Maintainers
5
Weekly downloads
 
Created
Source

blob-store-replication-stream

Build
Status

Replicate two abstract-blob-store compatible stores together (with caveats).

It would be very useful if any two blob stores could be replicated to each other over a simple duplex stream.

That's just what this module does, but with one large caveat: the abstract-blob-store interface doesn't provide a method for getting a list of the names of all blobs in the store. Without this, a full sync between blob stores isn't possible.

The caveat: any blob store you wish to use for replication must have a ._list(cb) function monkey patched onto it, which should return an array of keys (strings) in the callback cb. This will generally mean delving into the innards of each blob store you wish to support and figuring out how to add this functionality.

Usage

var createReplicationStream = require('blob-store-replication-stream')

var StoreFs = require('fs-blob-store')
StoreFs.prototype._list = function (cb) {
  require('fs').readdir(this.path, cb)
}

var StoreMem = require('abstract-blob-store')
StoreMem.prototype._list = function (cb) {
  process.nextTick(cb, null, Object.keys(this.data))
}

var fs = StoreFs('./fs')
var mem = StoreMem()

var ws = fs.createWriteStream('foo', function (err, metadata) {
  console.log('fs key', metadata.key)
  var ws = mem.createWriteStream('bar', function (err, metadata) {
    console.log('mem key', metadata.key)
    doReplicate()
  })
  ws.end('yo mem world')
})
ws.end('hello fs world')

function doReplicate () {
  var r1 = createReplicationStream(fs)
  var r2 = createReplicationStream(mem)

  r1.pipe(r2).pipe(r1)

  r1.on('end', onDone)
  r2.on('end', onDone)

  var pending = 2
  function onDone () {
    if (!--pending) {
      fs.createReadStream('bar').pipe(process.stdout)
      mem.createReadStream('foo').pipe(process.stdout)
    }
  }
}

outputs

fs key foo
mem key bar
yo mem world
hello fs world

API

var createReplicationStream = require('blob-store-replication-stream')

var stream = createReplicationStream(store[, opts])

Creates the duplex stream stream from the abstract-blob-store instance store.

Pipe this into another replication stream, and have that other replication stream also pipe into this, to create a full duplex channel of communication.

This function will throw an Error if no store._list() function is present.

Valid opts include:

  • mode:
    • 'sync': (default) entries will sent and fetched. the two stores will contain the same blobs post-replication
    • 'pull': entries will only be fetched, not sent
    • 'push': entries will only be sent, not fetched
  • filter: a function that takes a filename and returns true if it should be synced to the other side, or false if it shouldn't

In addition, stream will emit 'progress' events with parameters filesSent and filesTotal for tracking sync progress.

Install

With npm installed, run

$ npm install blob-store-replication-stream

License

ISC

FAQs

Package last updated on 17 Sep 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc