Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
A cache that stores key-value pairs with a time limit for each entry.
npm install cache-zap
import CacheZap from 'cache-zap';
const cache = new CacheZap();
cache.set('foo', 'bar', 1000); // key, value, time in milliseconds
cache.get('foo'); // 'bar'
cache.size(); // 1
setTimeout(() => {
cache.get('foo'); // undefined
cache.size(); // 0
}, 1000);
Set a key-value pair with a time limit for the entry.
key
: The key of the entry.value
: The value of the entry.duration
: The duration in milliseconds for which the entry should be valid.Get the value of an entry.
key
: The key of the entry.Check if an entry exists and is not expired.
key
: The key of the entry.Delete an entry.
key
: The key of the entry.Clear all entries.
Returns the number of valid (non-expired) entries in the cache.
FAQs
A cache that stores key-value pairs with a time limit for each entry.
The npm package cache-zap receives a total of 6 weekly downloads. As such, cache-zap popularity was classified as not popular.
We found that cache-zap demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.