Socket
Book a DemoInstallSign in
Socket

dat-replicator

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dat-replicator

Replicate dat using streams

latest
Source
npmnpm
Version
3.3.0
Version published
Maintainers
1
Created
Source

dat-replicator

Replicate a dat instance to another one (in a smart way) using nothing but streams

npm install dat-replicator

Usage

Replicating is a simple as piping a few streams

var replicator = require('dat-replicator')
var r1 = replicator(dat1)
var r2 = replicator(dat2)

var send = r1.send()
var rcvd = r2.receive()

send.pipe(rcvd).pipe(send) // will sync dat1 to dat2

Real world example

First setup a dat instance to receive data. Using tcp this could look like

var replicator = require('dat-replicator')
var net = require('net')

var r = replicator(datReceive) // datReceive is a dat instance

net.createServer(function(socket) {
  socket.pipe(r.receive()).pipe(socket)
}).listen(9090)

Then setup another that instance to send the data. Again using tcp

var r = replication(datSend) // datSend is a dat instance
var socket = net.connect(9090)

socket.pipe(r.send()).pipe(socket)

Thats it! All of the changes that datSend have and that datReceive doesn't will be inserted into datReceive.

Metadata

Per default metadata (the change count etc) is exchanged over the stream as well. If for some reason you already have this do

var send = r1.send({meta:{change:100}})
var rcvd = r2.receive({meta:false})

send.pipe(rcvd).pipe(send)

This will disable the metadata exchange

License

MIT

Keywords

dat

FAQs

Package last updated on 15 Jan 2015

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