Skip to content

UKHomeOffice/express-partial-templates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

express-partial-templates

A middleware that will use the views path and the view engine string that are stored against an Express app object to generate a key-value object that identifies and makes accessible the file paths of partial templates against res.locals.partials on execution.

Installation

npm install [--save] express-partial-templates;

Usage

var app = require('express')();

app.set('view engine', 'html');
app.set('views', path.join(__dirname, '/views'));
app.use(require('express-partial-templates')(app));

app.use(function (req, res, next) {
    // res.locals.partials has been set.

    next();
});

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published