A tiny npm module for caching data
$ npm install @binyamin/data-cacheimport * as datacache from '@binyamin/data-cache';
datacache.set('data', 'value');
// => Creates a file `.cache/data`, with a value of 'value'
datacache.get('data');
// => "value"All source-code is provided under the terms of the MIT license.
Copyright 2020-2025 Binyamin Aron Green.