Answers for "how to get public folder express.js"

1

how express serve public folder

// projectDirectory/src/index.js
const path = require('path')
const publicDirectoryPath = path.join(__dirname, '../public')
app.use(express.static(publicDirectoryPath))

// projectDirectory/public -> create index.html
// localhost:3000/index.html -> Here you go..
Posted by: Guest on August-04-2021
1

express public folder

app.use(express.static('public'))
app.use(express.static('files'))
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language