
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
cached-factory
Advanced tools
Creates and caches values under keys. π
cached-factory
exports a CachedFactory
class that takes in "factory" function in its constructor.
Each time a factory's .get(key)
is called with any key
for the first time, that factory is used to create a value under the key
.
const cache = new CachedFactory((key) => `Cached: ${key}!`);
// "Cached: apple!"
cache.get("apple");
Values are cached so that subsequent .get(key)
calls with the same key
instantly return the same value.
const cache = new CachedFactory((key) => ({ key }));
// { key: "banana" }
cache.get("banana");
// true
cache.get("banana") === cached.get("banana");
CachedFactory
does not itself handle Promise
logic, but it doesn't have to!
Provided factory functions can themselves be async
/ return Promise
values.
const cache = new CachedFactory(
async (key) => await fetch(`/some/resource?key=${key}`),
);
// Type: Promise<Response>
cache.get("cherry");
// Type: Response
await cache.get("cherry");
clear
Clears the cache.
cache.clear();
CachedFactory
is written in TypeScript and ships with strong typing. πͺ
π Tip: if you're working with
noImplicitAny
enabled (which is generally a good idea), an inline function provided as an argument toCachedFactory
may need an explicit type annotation for its key.
new CachedFactory((key: string) => `Cached: ${key}!`);
Josh Goldberg β¨ π» π π π€ π π§ π π§ |
π This package is based on @JoshuaKGoldberg's template-typescript-node-package.
FAQs
Creates and caches values under keys. π
The npm package cached-factory receives a total of 7,429 weekly downloads. As such, cached-factory popularity was classified as popular.
We found that cached-factory 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.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnamβs Telegram ban.