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