Package Exports
- node-localcache
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-localcache) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Node LocalCache 
Module, allows to save application data between launches in json data file. Api most liked as LocalStorage API
Usage
var LocalCache = require('node-localcache');
cache = new LocalCache('.cache/filetocache.json');
cache.setItem('key', 'value');
cache.getItem('key'); // valueOptions
new LocalCache(fileName, skipFileCaching);fileName- (optional withskipFileCaching:true) Path to cache file, also used as storeidskipFileCaching- (optional) disable file cache, defaultfalse
FS Perfomance
All manipulation agregating and applying 1 time per second. But, don't panic, on nodejs exit, everything will be saved into file.