🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@type-cacheable/node-cache-adapter

Package Overview
Dependencies
Maintainers
0
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@type-cacheable/node-cache-adapter

Adapter for using node-cache with type-cacheable

14.1.0
latest
Source
npm
Version published
Weekly downloads
5.4K
-8.61%
Maintainers
0
Weekly downloads
 
Created
Source

@type-cacheable/node-cache-adapter

npm downloads

TypeScript-based caching decorators to assist with caching (and clearing cache for) async methods. This package supports the node-cache client.

View full documentation

Usage

Installation

npm install --save @type-cacheable/core @type-cacheable/node-cache-adapter

or

yarn add @type-cacheable/core @type-cacheable/node-cache-adapter

Using adapter

import NodeCache from 'node-cache';
import { useAdapter } from '@type-cacheable/node-cache-adapter';

const client = new NodeCache();
const clientAdapter = useAdapter(client);

Then you can rely on the @Cacheable, @CacheUpdate, and @CacheClear decorators from @type-cacheable/core. See core documentation

Keywords

cache

FAQs

Package last updated on 21 Aug 2024

Did you know?

Socket

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.

Install

Related posts