What does?
InCache is a module that store any info in memory, it can be used for example for storing server sessions, caching http response or sharing singleton object in your apps.
It also give you the possibility to save data on disk so you can avoid the data loss when the process exit or restart. In a browser scenario all data is saved on localStorage through a key.
Installation
Node.js
npm install incache --save
Examples
Basic
const InCache = require('incache');
const store = new InCache();
store.set('my key', 'my value');
store.set('my key', {a: 1, b: 2});
store.get('my key');
store.remove('my key');
store.clear();
store.set('my string', 'hello world', {maxAge: 2000});
store.set('my string', 'hello world', {expires: '2028-08-22 12:00:00'});
Auto remove expired records
const store = new InCache({
autoRemovePeriod: 2
});
store.set('my string', 'hello world', {maxAge: 4000});
setTimeout(()=>{
console.log(store.count())
}, 6000);
Max cache size
const store = new InCache({
maxRecordNumber: 5
});
store.set('k0', 'v0');
store.set('k1', 'v1');
store.set('k2', 'v2');
store.set('k3', 'v3');
store.set('k4', 'v4');
store.set('k5', 'v5');
console.log(store.count());
console.log(store.has('k0'));
Load manually
const store = new InCache({
autoLoad: false
});
store.load('my-path/my-store.json').then(() => {
console.log('loaded');
}).catch(err => {
console.log(err);
});
Save on disk
By default this operation is running before the process is terminated
const store = new InCache({
autoSave: true
});
Save when data is changed
const store = new InCache({
autoSave: true,
autoSaveMode: 'timer'
});
Save manually
const store = new InCache({
filePath: 'my-path/my-store.json'
});
store.set('a key', 'a value');
store.save();
store.save('a-path/a-file.json').then(()=>{
console.log('saved');
store.load('a-path/a-file.json');
}).catch(err => {
console.log(err);
});
Browser scenario
In browser environment the file path becomes a string key for localStorage interface:
store.load('myLocalStorageKey');
store.save('myLocalStorageKey');
Events
incache.on('remove', key => {
console.log(key);
});
incache.on('beforeSet', (key, value) => {
console.log(key, value);
if(foo)
return false;
});
incache.on('create', (key, record) => {
console.log(key, record);
});
incache.on('update', (key, record) => {
console.log(key, record);
});
incache.on('save', () => {
console.log('saved on disk');
});
incache.on('exceed', (diff) => {
console.log(`exceeded for ${diff}`);
});
API
Please see the full documentation for more details.
Browser
Local
<script src="node_modules/incache/dist/incache.min.js"></script>
CDN unpkg
<script src="https://unpkg.com/incache/dist/incache.min.js"></script>
CDN jsDeliver
<script src="https://cdn.jsdelivr.net/npm/incache/dist/incache.min.js"></script>
Changelog
You can view the changelog here
License
InCache is open-sourced software licensed under the MIT license
Author
Fabio Ricali
Contributor
Davide Polano