
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
A leveldb-backed consistent hash ring, for your caching needs. I can see the day when you might want to put data in this & feel reasonably sort of confident you might get it back out again. If this scares you, it's supposed to.
Rod Vagg's levelup leveldb bindings for node + sublevel to create buckets.
Dominic Tarr's crtd, which uses his scuttlebutt implementation to keep a document in sync.
light-cycle, a lightweight consistent hash ring structure that can be mixed into most anything.
restify to provide a simple RESTful api to data in the buckets.
Run a server:
node index.js --id=node-one -m -p 3333 -g 4114 -d ./db | ./node_modules/.bin/bunyan -o short
Run a client or five:
node index.js --id=node-two -p 3334 -g 4114 -s 10.0.0.5 -d ./db2 | ./node_modules/.bin/bunyan -o short
node index.js --id=node-three -p 3335 -g 4114 -s 10.0.0.5 -d ./db3 | ./node_modules/.bin/bunyan -o short
node index.js --id=node-four -p 3336 -g 4114 -s 10.0.0.5 -d ./db4 | ./node_modules/.bin/bunyan -o short
Replace 10.0.0.5 with the IP address of your server.
Then stuff some data in:
http PUT 10.0.0.5:3334/vodkas/1 name="Sobieski" rating=5
http PUT 10.0.0.5:3335/vodkas/2 name="Tito's Handmade" rating=5
http PUT 10.0.0.5:3335/vodkas/3 name="Bimber" rating=4
Get it back out: http GET 10.0.0.5:3336/vodkas/2 | json
(Human-friendly shell commands courtesy of httpie).
API endpoints exposed:
GET /:bucket: stream sorted keys for a bucket (works!)POST /:bucket: add an item to the cache; id is generated for you & returnedPUT /:bucket/:id: add/update an item in the cache; 204 responseGET /:bucket/:id: get an item from the cacheHEAD /:bucket/:id: headers for an itemDEL /:bucket/:id: remove an itemSend this header to specify a time-to-live for your cached data: X-Scurry-TTL: [seconds]
Scurry sends an ETag header and a last-modified timestamp.
As of version 0.0.4, the data stored in the LevelDB nodes is json structured as follows:
{
version: 1, // storage version
ts: Date.now(), // timestamp of last set()
payload: value, // base64-encoded string if buffer, JSON string if not
etag: crc.digest('hex'), // md5 hex digest of payload
base64: valueIsB64String, // true if the payload had to be base64 encoded
'content-type': metadata['content-type'] // content-type if passed in
};
Upcoming releases:
General goals:
MIT.
FAQs
A leveldb-backed consistent hash ring, for your toy caching needs.
The npm package scurry receives a total of 1 weekly downloads. As such, scurry popularity was classified as not popular.
We found that scurry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.