
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
fs-key-value
Advanced tools
This module provides a simple key value data store using only the file system. It makes use of file locking to allow safe operation in a multiple process environment without the overhead of a separate database server.
$ npm install fs-key-value
var cluster = require('cluster'),
FsKeyValue = require('fs-key-value')
if (cluster.isMaster) {
for (var i = 0; i < 8; i++) {
cluster.fork()
}
} else {
var id = cluster.worker.id % 2
var mydb = new FsKeyValue('./mydb', function (err, db) {
if (err) {
return console.log(err)
}
db.put('hoopla' + id, {'msg': 'ballyhoo ' + cluster.worker.id}, function (err) {
if (err) {
return console.log(cluster.worker.id + ' err ' + err)
}
db.get('hoopla' + id, function (err, data) {
if (err) {
return console.log(cluster.worker.id + ' err ' + err)
}
if (data != undefined) {
console.log(data.msg)
}
db.delete('hoopla' + id)
cluster.worker.kill()
})
})
})
}
FAQs
Key value data store using the filesystem
We found that fs-key-value demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.