Meteor wrapper for node-cache.
It allows you to store the values in cache on server same as the client side cache or session variables.
meteor add nodexpert:meteor-cache
import MeteorCache from 'meteor/nodexpert:meteor-cache';
const cache = new MeteorCache();
//
cache.set('cahe-name', value)
cache.get('cache-name')
cache.del('cache-name')