Answers for "how to set the path to static folder for express js"

13

static folder express

// dependencies
const path = require('path');

// set static folder
app.set(express.static(path.join(__dirname, 'public')));
Posted by: Guest on June-11-2021
6

express public folder

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

Code answers related to "how to set the path to static folder for express js"

Browse Popular Code Answers by Language