streamstache-cache

0.0.1 • Public • Published

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

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i streamstache-cache

    Weekly Downloads

    0

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • juliangruber