Append only scuttlebutt structure
JavaScript
Latest commit f0a84d3 Jan 11, 2013 @Raynos 0.2.3
Permalink
Failed to load latest commit information.
example cleanup properly Dec 3, 2012
test tests for compatiblity with level-scuttlebutt Dec 1, 2012
.gitignore append only data Nov 26, 2012
LICENCE append only data Nov 26, 2012
README.md initial implementation Nov 26, 2012
index.js cleanup properly Dec 3, 2012
package.json 0.2.3 Jan 11, 2013

README.md

append-only

Append only scuttlebutt structure

Example

Represent an append only data structure through scuttlebutt.

You push new pieces of data onto the list. You can also remove a item from the list (which is actually an append only message).

append-only generates a unique __id on your item for you.

var AppendOnly = require("append-only")
    , list1 = AppendOnly()
    , list2 = AppendOnly()

list1.on("item", function (item) {
    if (item.more) {
        list1.remove(item.__id)
    }
})

list1.push({ some: "data" })
list1.push({ more: "data" })

list2.on("item", function (item) {
    console.log("items", item)
})

list2.on("remove", function (item) {
    console.log("item removed", item)
})

setTimeout(function () {
    var array = list2.createArray()
    console.log("array", array)
}, 500)

var stream1 = list1.createStream()
    , stream2 = list2.createStream()

stream1.pipe(stream2).pipe(stream1)

Installation

npm install append-only

Contributors

  • Raynos

MIT Licenced