Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
simple-lru-cache
Advanced tools
It's a very simple and extremely fast lru cache for node.js.
This cache will priorize the lastest used keys over the least used keys, so when a new key is added if the cache is full, the least used key will be removed
npm install simple-lru-cache
var SimpleCache = require("simple-lru-cache")
var cache = new SimpleCache({"maxSize":1000})
//Add an Objet
cache.set("hello","world")
//Get an Object
cache.get("hello")
//Delete an Object
cache.del("hello")
//Reset cache
cache.reset()
npm install
npm test
make bench
FAQs
node-simple-lru-cache =====================
The npm package simple-lru-cache receives a total of 613,000 weekly downloads. As such, simple-lru-cache popularity was classified as popular.
We found that simple-lru-cache 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
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.