npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

streamstache-cache

0.0.1

@juliangruber

npmHomeRepoSnykSocket
Downloads:1
$ npm install streamstache-cache
DailyWeeklyMonthlyYearly

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