node-fscache
v0.0.1
Published
cached file access
Readme
fscache
Simple file cache.
Install
npm install node-fscacheUse
var fscache = require('fscache');
var cache = new fscache();
cache.get('file.txt', function (err, data) {
console.log(data);
});
