ericf / express-handlebars

A Handlebars view engine for Express which doesn't suck.
BSD 3-Clause "New" or "Revised" License
2.31k stars 384 forks source link

Alternative template storage (i.e mongodb) #91

Closed redben closed 9 years ago

redben commented 9 years ago

Is there any way (to hook into the module) to load templates from other types of storage ? In my case I have templates stored in mongodb.

Thanks for this great module !

ericf commented 9 years ago

This package is very much tied to the filesystem. It would require an override of most public (maybe all) public methods. If you wanted to do such a thing, you're probably better off writing a Mongo-backed engine from scratch.

redben commented 9 years ago

Thanks ericf.