express serve html file code example
Example 1: express sendfile html
var express = require('express');
var app = express();
var path = require('path');
// viewed at http://localhost:8080
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname + '/index.html'));
});
app.listen(8080);
Example 2: 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}!`)
})
Example 3: express img folder
app.use(express.static('public'))
Example 4: use static with expres
app.use(express.static('directoryName'))
#store the files in the directory as if you were making a website without express
Example 5: app.use public
express.static(root, [options])