1.0.0 • Published 4 years ago

express-ejs-handler v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

A simple project which allows you to create handled projects with ejs and express. What it does? Set's the view engine to ejs (you need to have ejs installed (npm i ejs)) and automatically reads from the views folder. Example usage:

const Handler = require('express-ejs-handler');
const app = require('express')();
new Handler(app);

app.listen(3000)