UNPKG

query-registry

Version:

Query the npm registry for packuments, manifests, packages and download counts

13 lines (12 loc) 260 B
import QuickLRU from "quick-lru"; /** Internal cache for all requests. @see {@link https://github.com/sindresorhus/quick-lru} @internal */ export const cache = new QuickLRU({ // 100 items. maxSize: 100, // 5 minutes. maxAge: 5 * 60 * 1000, });