
Security News
n8n Tops 2025 JavaScript Rising Stars as Workflow Platforms Gain Momentum
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.
[](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
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.