
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
[](https://coveralls.io/github/mikeal/lucass?branch=master) [](https://travis-ci.org/mikeal/lu
There are a bunch of content addressable stores out there, and even some abstract store specs. A few things that are different about lucass:
This module contains compliance tests and two reference implementations (filesystem and inmemory).
class Store {
async set (value, cb) {
// value is either a Buffer or a Stream, both must be supported.
// cb(Error, Hash)
// Hash must be consistent. Data written with Buffer or Stream should
// be identical.
// Hash must be a String.
}
async get (hash, cb) {
// Hash must be a String.
// returns a buffer.
}
async hash (value, cb) {
// Identical method signature to set but MUST NOT store the value.
}
}
There are also optional APIs. These are not required as they may not be possible on top of certain storage but may be required by certain users of an implementation.
class Store {
async set (value, ...args) {
// Optional args are sent to the hashing function..
}
async hash (value, ...args) {
// Optional args are sent to the hashing function.
}
async missing (hashes) {
// Optional array of hashes. Missing hashes will be returned.
}
}
let store = require('lucass/inmemory')()
let hasher = await store.set(Buffer.from('asdf'))
let value = await store.getBuffer(hash)
console.log(value.toString()) // 'asdf'
Additionally, all methods in the spec are implemented.
let store = require('lucass/fs')('/var/custom-directory')
let hasher = await store.set(Buffer.from('asdf'))
let value = await store.getBuffer(hash)
console.log(value.toString()) // 'asdf'
Additionally, all methods in the spec are implemented.
FAQs
[](https://coveralls.io/github/mikeal/lucass?branch=master) [](https://travis-ci.org/mikeal/lu
We found that lucass 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.