aboutsummaryrefslogtreecommitdiff
path: root/src/app.mjs
blob: 2903c58ca9682dda1b3ee0191b6600a1115c5071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'use-strict';

const express = require('express');
const mustache = require('mustache-express');
const path = require('path');

const app = express();

app.engine('html', mustache());
app.set('view engine', 'html');
app.set('views',path.join(__dirname, 'views'));

app.use(express.static('default'));
app.use(express.static('static'));

app.get('/', (req, res) => {
    res.render('index.html', {yourdata: 'Hello from Mustache Template'});
});

const server = app.listen(8100, () => {
  const host = server.address().address;
  const port = server.address().port;
  console.log(`[${new Date()}] > App listening at http://%s:%s`, host, port);
});