
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
redis-level
Advanced tools
An abstract-level database backed by Redis.
:pushpin: What is
abstract-level? Head over to the FAQ.
const { RedisLevel } = require('redis-level')
// Create a database
const db = new RedisLevel({
redis: {
url: "redis://localhost:6379"
}
})
// Add an entry with key 'a' and value 1
await db.put('a', 1)
// Add multiple entries
await db.batch([{ type: 'put', key: 'b', value: 2 }])
// Get value of key 'a': 1
const value = await db.get('a')
// Iterate entries with keys that are greater than 'a'
for await (const [key, value] of db.iterator({ gt: 'a' })) {
console.log(value) // 2
}
All asynchronous methods also support callbacks.
db.put('example', { hello: 'world' }, (err) => {
if (err) throw err
db.get('example', (err, value) => {
if (err) throw err
console.log(value) // { hello: 'world' }
})
})
FAQs
Redis backed abstract-level database for Node.js
The npm package redis-level receives a total of 6 weekly downloads. As such, redis-level popularity was classified as not popular.
We found that redis-level demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.