Answers for "serve public folder express without file extension"

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
0

serve public folder express without file extension

app.use(express.static(path.join(__dirname, 'public'),{index:false,extensions:['html']}));
Posted by: Guest on October-05-2021

Code answers related to "serve public folder express without file extension"

Code answers related to "Javascript"

Browse Popular Code Answers by Language