Giter VIP home page Giter VIP logo

Comments (3)

elbankster avatar elbankster commented on July 22, 2024

Thank you! It was obvious something was wrong with the code but I couldn't figure it out. I replaced the old code with:

staticFile(req.url);

which does not work. I was stumped. Can you or someone explain why we send two arguments to staticFile when exports.staticFile only asks for one?

from mean1.

Em-Ant avatar Em-Ant commented on July 22, 2024
// from ./responseGenerator.js
// (...)
exports.staticFile = function (staticPath) {

\*************** LOOK HERE !! **********************\  
  return function(data, response) {

    var readStream;

    // Fix so routes to /home and /home.html both work.
    data = data.replace(/^(\/home)(.html)?$/i,'$1.html');
    data = '.' + staticPath + data;

    fs.stat(data, function (error, stats) {

      if (error || stats.isDirectory()) {
        return exports.send404(response);
      }

      readStream = fs.createReadStream(data);
      return readStream.pipe(response);
    });
  }
}

When you require the module, then call staticFile(path)

// from index.js
var responder = require('./responseGenerator');
var staticFile = responder.staticFile('/public');

you get a function(data, response), as shown in the previous code sample !!

from mean1.

iulian-covrig avatar iulian-covrig commented on July 22, 2024

... } else { staticFile(req.url,res); }
it works, only if you type '/home' or '/home.html' in your browser, otherwise it will give a 404 page. Hope this help. It was the only way I could make it work. Cheers!

from mean1.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.