
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@joaootavios/redis-map
Advanced tools
A simple way to use something similar to the Map in javascript, but synchronized with the power of Redis.
A simple way to use something similar to the Map in javascript, but synchronized with the power of Redis.
npm install @joaootavios/redis-map
const { RedisAPI, RedisMap } = require("@joaootavios/redis-map");
const connections = await new RedisAPI({
url: process.env.REDIS, monitor: (type, message) => {
console.log(`[REDIS] ${type}: ${message}`);
}
}).connect();
// Example using same connection (for two maps);
// first map;
const cacheUsers = new RedisMap({
connections,
name: "example:cache:users", monitor: (type, message, name) => {
console.log(name, type, message);
}
});
// second map;
const cacheApps = new RedisMap({
connections,
name: "example:cache:apps", monitor: (type, message, name) => {
console.log(name, type, message);
}
});
await cacheUsers.set("joao", { plan: "free", balance: 1000 });
console.log(cacheUsers.get("joao"), "\n");
await cacheApps.set("water_man", { protection: 10, shield: 50 });
console.log(cacheApps.get("water_man"), "\n");
connections.disconnect();
This project is licensed under the Apache License 2.0
FAQs
A simple way to use something similar to the Map in javascript, but synchronized with the power of Redis.
The npm package @joaootavios/redis-map receives a total of 0 weekly downloads. As such, @joaootavios/redis-map popularity was classified as not popular.
We found that @joaootavios/redis-map 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.