blob: 3b0bd44711eb22fafdfd356503120dc0a7792ab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
const express = require('express')
const app = express()
app.set('view engine', 'pug')
app.use('/static', express.static('static'))
app.get('/', function (req, res) {
res.render('index', { title: 'Hey', message: 'Hello there!' })
})
app.listen(3000, function () {
console.log('Example app listening on port 3000!')
})
|