Answers for "express server use public"

2

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language