npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

scuttleup-blacklist

v3.4.3

Published

Scuttlebutt like eventual consistent log replication for levelup

Downloads

10

Readme

scuttleup-blacklist

Scuttlebutt like eventual consistent log replication for levelup that allows blacklisting.

npm install --save scuttleup-blacklist

build status AppVeyor Build Status

Usage

var scuttleupBlacklist = require('scuttleup-blacklist')

var log = scuttleupBlacklist(db) // db is a levelup instance

var changes = log.createReadStream({
  live: true
})

changes.on('data', function(data) {
  console.log(data) // print out the log - data.entry will be 'hello world'
})

log.append('hello world') // add something to the log

Replication

To replicate two logs pipe their replication stream together using the scuttlebutt protocol

var repl1 = log1.createReplicationStream()
var repl2 = log2.createReplicationStream()

// the two logs will now replicate to each other
repl1.pipe(repl2).pipe(repl1)

Blacklisting

var fraudsta = scuttleupBlacklist(db1)
var alman = scuttleupBlacklist(db2)

var fraudr = fraudsta.createReplicationStream()
var almar = alman.createReplicationStream()

fraudsta.append('some juju', function(err, data) {
  if (err) return console.error(err)
  alman.blacklist(data.peer, data.seq, function(err) {
    if (err) return console.error(err)
    fraudr.pipe(almar).pipe(fraudr)
    // fraudsta's juju will not be piped into alman's levelup
  })
})

API

var log = scuttleupBlacklist(db, [opts])

Create a log new instance. Options can include

{
  id: 'a-globally-unique-peer-id',
  valueEncoding: 'utf-8' // encoding of log entries
}

log.append(entry, [callback])

Add a new entry to the log

log.entry(peer, seq, [options], callback)

Retrieve a entry from the log from a given peer and seq

var ws = log.createAppendStream()

.append as a stream

var repl = log.createReplicationStream(opts)

Create a log replication stream. Pipe this to the replication stream of another log. Replication is eventual consistent and works using the scuttlebutt protocol

Options can include

{
  live: false, // disable live replication. defaults to true
  mode: 'sync' | 'push' | 'pull' // set replication mode. defaults to sync
}

var rs = log.createReadStream(opts)

Create a log read stream. Options can include

{
  live: false, // continiously read the changes,
  tail: false, // only read new changes
}

var ws = log.createWriteStream()

Create a log write stream

log.blacklist(peer, seq[, callback])

Blacklist specific logs from being written into your levelup instance.

log.whitelist(peer, seq[, callback])

Remove a specific log from your blacklist.

License

MIT