
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
Consistent hashing module for Node.JS
npm install consistent
var consistent = require('consistent');
var ring = consistent({
members: [
"member1",
"member2",
{
key: "member3",
weight: 1.5 // optional, default weight is 1
}
],
hash: 'md5' // can use 'md5' or 'murmurhash'
});
console.log(ring.get('some key'));
// outputs member1 or member2 or member3
adds a new member
ring.add('member4');
// or
ring.add({
key: "member4",
weight: 3
})
removes a member
ring.remove("member2")
this preserves the hash slots of old member, if you want to recalculate hashes for the new member, just remove the old one and add the new one.
ring.replace('member1', 'member5');
ring.get('some key');
ring.getCached('some key'); //use lru cache
ring.exists('member1') // returns true if a member has been added with name member1
ring.length; // returns number of members within the ring
Ekin Koc
MIT
FAQs
Consistent hashing for Node.JS
We found that consistent 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.