1.0.1 • Published 5 years ago

kv-file-cache v1.0.1

Weekly downloads
61
License
MIT
Repository
github
Last release
5 years ago

kv-file-cache

Key value cache store using a file for a value.

Installation

$ npm install kv-file-cache

Example

const KvFileCache = require('kv-file-cache')

;(async () => {
  const cache = new KvFileCache('tmp/test')
  await cache.set('key', 'value')
  const has = await cache.has('key') // true
  const value = await cache.get('key') // 'value'
  await cache.clear('key')
  await cache.clearAll()
})()