Answers for "how to serve html file in express js"

0

express serve html

const path = require('path')
const express = require('express')

const app = express()

const port = process.env.PORT || 3000
const publicDirectoryPath = path.join(__dirname, '../public')

app.use(express.static(publicDirectoryPath))

app.listen(port, () => {
    console.log(`Server is up on port ${port}!`)
})
Posted by: Guest on July-31-2020

Code answers related to "how to serve html file in express js"

Browse Popular Code Answers by Language