ycache
v0.0.2
Published
cache for node
Downloads
1
Readme
cache
simple lru cache for node and browser
Install
npm install ycache --save
Usage
const Cache = require('simple-cache');
const cache = new Cache(10000);
cache.set('key','value'); // cache it
cache.get('key'); //if you cache it
cache.cleanup(); // clean cache
cache.update('key','anothervalue');// update cache
Test
npm run test