Answers for "app.use(express.static("public")) what is this used for"

C
1

express.static public

app.use('/public', express.static(path.join(__dirname, '../public')))
                                  // use path here
Posted by: Guest on December-30-2021
1

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

Code answers related to "app.use(express.static("public")) what is this used for"

Code answers related to "C"

Browse Popular Code Answers by Language