express-ejs-handler
v1.0.0
Published
A simple project which allows you to create handled projects with ejs and express.<br> 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:<br> ```js c
Downloads
2
Readme
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)