Answers for "use of express server static"

5

node express server static files

var express = require('express');
var app = express();
var path = require('path');

//app.use(express.static(__dirname)); // Current directory is root
app.use(express.static(path.join(__dirname, 'public'))); //  "public" off of current is root

app.listen(80);
console.log('Listening on port 80');
Posted by: Guest on May-11-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language