Answers for "how to serve 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
1

how express serve public folder

// projectDirectory/src/index.js
const path = require('path')
const publicDirectoryPath = path.join(__dirname, '../public')
app.use(express.static(publicDirectoryPath))

// projectDirectory/public -> create index.html
// localhost:3000/index.html -> Here you go..
Posted by: Guest on August-04-2021
4

express serve static files

app.use('/', express.static('public'));
Posted by: Guest on June-24-2021
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
-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

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language