Answers for "Serve an HTML File express js"

7

send html file express

res.sendFile(path.join(__dirname + '/index.html'));
Posted by: Guest on March-05-2020
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

Browse Popular Code Answers by Language