
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
lru-memoize
Advanced tools
lru-memoize is a utility to provide simple memoization for any pure javascript function, using an LRU cache that prioritizes the most recently accessed values, and discards the "least recently used" (LRU) items when the size limit is reached. If your function has side effects or relies on some external state to generate its result, it should not be memoized.
npm install --save lru-memoize
Let's look at an example where we want to memoize a function that multiplies three numbers together, and we want to keep the last ten arguments -> value mappings in memory.
var memoize = require('lru-memoize');
var multiply = function(a, b, c) {
return a * b * c;
}
multiply = memoize(10)(multiply);
module.exports = multiply;
import memoize from 'lru-memoize';
let multiply = (a, b, c) => a * b * c;
multiply = memoize(10)(multiply);
export default multiply;
memoize(limit:Integer?, equals:Function?, deepObjects:Boolean?)Returns (Function) => Function.
limit : Integer [optional]The number of
arguments -> valuemappings to keep in memory. Defaults to1.
equals : Function [optional]A function to compare two values for equality. Defaults to
===.
deepObjects : Boolean [optional]Whether or not to perform a deep equals on Object values. Defaults to
false.
FAQs
A utility to provide lru memoization for any js function
The npm package lru-memoize receives a total of 14,861 weekly downloads. As such, lru-memoize popularity was classified as popular.
We found that lru-memoize 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.