nayefalebrahim / express-edge

🔤 Use Edge templating engine with Express

Home Page:https://npmjs.com/express-edge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

express-edge

Use Edge templating engine with Express

travis npm version npm downloads npm license prs Welcome eslint

Installation

npm install express-edge --save

Usage

See the Edge documentation for how to structure your templates.

const express = require('express');
const app = express();
const { config, engine } = require('express-edge');

// Configure Edge if need to
config({ cache: process.env.NODE_ENV === 'production' });

// Automatically sets view engine and adds dot notation to app.render
app.use(engine);
app.set('views', `${__dirname}/views`);

app.get('/', (req, res) => {
  res.render('users.index', { users: [...] });
});

app.listen(3000);

License

MIT © Daniel Eckermann

About

🔤 Use Edge templating engine with Express

https://npmjs.com/express-edge

License:MIT License


Languages

Language:JavaScript 100.0%