Answers for "how to use static files in express"

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
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
2

use static with expres

app.use(express.static('directoryName'))
#store the files in the directory as if you were making a website without express
Posted by: Guest on August-12-2020
-2

express static serve

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

Code answers related to "how to use static files in express"

Code answers related to "Javascript"

Browse Popular Code Answers by Language