Response
Render
app.set('views', './views'); //this is the default
app.use(express.static('public'))
app.use('/static', express.static('public'))res.render('index', { title: 'Hey', msg: 'Hello!' })Respond with Error
Last updated