
Security News
minimatch Patches 3 High-Severity ReDoS Vulnerabilities
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.
level-live-stream
Advanced tools
Stream live changes from levelup.
Works just like LevelUp#readStream except instead of ending, it will stay open and stream changes to the database as they are inserted!
Just like the couchdb changes feed, but for any arbitary range of keys!
see also, level-livefeed for the same idea, but with a streams2 api.
var level = require('level')
level('/tmp/level-live-stream',
{createIfMissing: true}, function (err, db) {
var liveStream = require('level-live-stream')(db)
liveStream
.on('data', console.log)
setInterval(function () {
db.put('time', new Date().toString())
}, 1000)
})
LiveStream(db, {
tail: true, //follow
old : true, //get old records from data base
//if old=false you will only get live updates
min : loKey, //lowest key in range
max : hiKey, //highest key in range
reverse: true //stream in reverse (only applies to old records)
})
MIT
FAQs
Stream live changes from levelup.
The npm package level-live-stream receives a total of 155 weekly downloads. As such, level-live-stream popularity was classified as not popular.
We found that level-live-stream 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
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.

Research
/Security News
Socket uncovered 26 malicious npm packages tied to North Korea's Contagious Interview campaign, retrieving a live 9-module infostealer and RAT from the adversary's C2.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.