Answers for "static express"

-3

express serve static

app.use('/static', express.static(__dirname + '/public'));
Posted by: Guest on April-26-2021
1

app.use public

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

express static serve

app.use(express.static('public'))
Posted by: Guest on January-22-2021
0

what is express static

The express. static() function is a built-in middleware function in Express. It serves static files and is based on serve-static. Syntax: express.static(root, [options]) Parameters: The root parameter describes the root directory from which to serve static assets
Posted by: Guest on August-28-2021

Browse Popular Code Answers by Language