Answers for "how express serve public folder"

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
4

express serve static files

app.use('/', express.static('public'));
Posted by: Guest on June-24-2021

Code answers related to "how express serve public folder"

Code answers related to "Javascript"

Browse Popular Code Answers by Language