ehp
Version:
A simple express html pass-thru view
28 lines (16 loc) • 427 B
Markdown
# ehp
Simple Express HTML passthru view for those times when you need a quick static view
and express insists on jade or ejs
## Installation
$ npm install ehp
## Features
* in-memory caching of static pages
## Usage
```javascript
app.engine('html', require('ehp').renderFile);
app.set('view engine', 'html');
```
## Licensing
Licensed under MIT
Copyright (C) 2015 Ahmed Masud <ahmed.masud@trustifier.com>