
Security News
Cline CLI npm Package Compromised via Suspected Cache Poisoning Attack
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.
await-cache
Advanced tools
A cache for async-functions. It also works for non-async functions. It's even possible to enable a LRU-algorithm.
npm i await-cache
Simply surround the async function you want to cache. In this example fetch is a function that loads a file.
const cachify = require('await-cache');
const cachedFetch = cachify(/* function to cache: */fetch, /* cache-time in milliseconds: */ 1000 * 60 * 60)
async function test() {
try {
const data1 = await cachedFetch('foo.bar') // will do the real fetch and cache it for an hour
const data2 = await cachedFetch('foo.bar') // will instantly return the cached value
const data3 = await cachedFetch('foo2.bar') // will fetch a different result and cache it for an hour
} catch(e) {
// fetch throw an error
console.error(e)
}
}
Second argument can be the cache-time in milliseconds or an object of options. With setting the maxSize-option you enable the LRU-Cache:
const cachify = require('await-cache');
const cachedFunc = cachify(async (filename) => {
let data = await fetch(filename)
return JSON.parse(data)
}, {
maxAge: 60 * 60 * 1000, // cache for an hour
maxSize: 2, // enable LRU-cache. Only cache the last 2 used files. The cache will never save more that the result of 2 different arguments.
serialize: (args) => JSON.stringify(args) // use a special argument-serialize-function
})
The default serialisation for the arguments uses JSON.stringify. So you will have to write a custom serialisation if you want to use functions or complex objects as arguments.
FAQs
A simple to use cache for async-functions
We found that await-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
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.

Product
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.