Answers for "express static"

0

express serve html

const path = require('path')
const express = require('express')

const app = express()

const port = process.env.PORT || 3000
const publicDirectoryPath = path.join(__dirname, '../public')

app.use(express.static(publicDirectoryPath))

app.listen(port, () => {
    console.log(`Server is up on port ${port}!`)
})
Posted by: Guest on July-31-2020
-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

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
0

express.static

app.use('/static', express.static('public'))
Posted by: Guest on October-12-2021

Browse Popular Code Answers by Language