Answers for "node serve static files"

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

access to static file nodejs

app.use(express.static(__dirname + '/public'));
<link rel="stylesheet" type="text/css" href="css/style.css" />
Posted by: Guest on May-14-2020
1

app.use public

app.use(express.static('public'))
app.use(express.static('files'))
Posted by: Guest on April-02-2020
0

how can node js file be serve

var fs = require('fs'),
    http = require('http');

http.createServer(function (req, res) {
  fs.readFile(__dirname + req.url, function (err,data) {
    if (err) {
      res.writeHead(404);
      res.end(JSON.stringify(err));
      return;
    }
    res.writeHead(200);
    res.end(data);
  });
}).listen(8080);
Posted by: Guest on September-28-2020
0

serve static files from express

const path = require('path')
app.use('/static', express.static(path.join(__dirname, 'public')))
Posted by: Guest on July-31-2021

Code answers related to "node serve static files"

Code answers related to "Javascript"

Browse Popular Code Answers by Language