Skip to content

pushrax/express-template-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Express Template Cache

express-template-cache is a simple and lightweight module that adds cached rendering of templates to Express. It is useful for serving static pages that only need to be rendered once.

The first time a particular template is requested, it is rendered and the result is cached to memory. Subsequent requests will simply be served from the cache, instead of rendering the template again. This eliminates the need to manually render templates for static pages, while keeping page load times to a minimum.

Installation

npm:

$ npm install express-template-cache

Usage

To use this module, just require('express-template-cache'), and it will monkey-patch Express, adding the res.renderStatic() method. It is used in the exact same way as res.render(), however it implements the caching strategy described above.

require('express-static-render');

app.get('/', function(req, res) {
    res.renderStatic('index', { title: 'My Awesome Website' });
});

Planned Features

  • HTTP Cache-Control and conditional GET support
  • Way to define unique views to be rendered other than just by name

About

Adds cached rendering of templates to Express.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published