streamstache-cache
v0.0.1
Published
A production file cache for streamstache.
Downloads
3
Readme
streamstache-cache
A simple filesystem cache for streamstache.
Example
var Cached = require('streamstache-cache');
var tpl = Cached(__dirname + '/simple.html');
http.createServer(function(req, res) {
tpl({ foo: 'bar' }).pipe(res);
});
API
Cached(path)
Return a function that takes an optional scope and returns a new streamstache instance for the template under path
.
Attention
The initial caching is done using a fs.readFileSync
, so always create the cache at bootup time.
Installation
With npm do:
npm install streamstache-cache
License
MIT