
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
append-only
Advanced tools
Append only scuttlebutt structure
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)
npm install append-only
FAQs
Append only scuttlebutt structure
The npm package append-only receives a total of 7 weekly downloads. As such, append-only popularity was classified as not popular.
We found that append-only demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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 MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.