
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
A node.js client driver for Doozer
Doozer.js requires the pbuf Protocol Buffers module, which requires protobuf to be installed in /usr/local
Add doozer to your package.json
{
"dependencies": {
"doozer": "~0.1"
}
}
Then:
var Doozer = require('doozer')
Connect to a Doozerd server on the given host and port. Returns a Doozer connection object.
Arguments
Example
Doozer.dial(8046, "localhost", function () {
console.log("connected to Doozer")
});
Same as above except address is a string like "localhost:8047". If no port is given 8046 will be assumed.
Connect to a Doozer cluster using a doozer:? uri string, optionally using DzNS for node lookup. See Doozer URIs for details
Note, this function DOES NOT return a Doozer object. It is available as this in the callback.
Arguments
ca or cn parameters.Example
Doozer.dialUri("doozer:?cn=local", "doozer:?ca=10.0.1.5:8048", function (err) {
this.rev(function(err, rev) {
console.log(rev)
})
})
Return the current rev number
Arguments
Sets a value for the given file
Arguments
Get the value at the given path
Arguments
Delete the given path with the given rev number
Arguments
Gets the names of the children of the given dir
Arguments
Like getDir except returns an array of StatInfo instead of names
Returns the file length and rev number at the given path
Arguments
Return an object with stat information on the given path. A StatInfo contains:
Arguments
Registers the given callback to be called when a file covered by glob meets or exceeds the given rev.
Arguments
Closes the connection to Doozer
FAQs
Node.js Doozer Client
The npm package doozer receives a total of 2 weekly downloads. As such, doozer popularity was classified as not popular.
We found that doozer 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.