Plain simple, in-memory, tiny-in-size JavaScript cache library
npm install plain-cachePlain-simple, in-memory, tiny-in-size (less than 500 bytes when minified + gzipped) cache library, runs on both browser and NodeJS environments.
npm i --save plain-cache
``javascript`
const cache = require('plain-cache')
or
`javascript`
import cache from 'plain-cache'
`javascriptfoo
// Set cache with key = , value = bar, expired in 3 seconds
cache.set('foo', 'bar', 3000)
// Get back cache with key foo
cache.get('foo') // === 'bar'
// get() accepts default value and ttl
cache.get('foo', 'bar') // if cache with key = foo not found, set it to bar
// get() also accepts ttl
cache.get('foo', 'bar', 3000)
// Delete cache with key foo
cache.del('foo')
// Clear cache (everything is removed)
cache.clear()
`
plain-cache has some convenient timing TTL constants.
`javascript`
cache.VALID_FOR_10_SECONDS
cache.VALID_FOR_30_SECONDS
cache.VALID_FOR_A_MINUTE
cache.VALID_FOR_5_MINUTES
cache.VALID_FOR_10_MINUTES
cache.VALID_FOR_30_MINUTES
cache.VALID_FOR_AN_HOUR
cache.VALID_FOR_A_DAY
cache.VALID_FOR_A_WEEK
cache.VALID_FOR_30_DAYS
cache.VALID_FOREVER
To run unit tests locally:
npm test`
MIT