Giter VIP home page Giter VIP logo

Comments (4)

dougwilson avatar dougwilson commented on May 17, 2024

The way the send module works, it is just sync. Besides, the Content-Length header at this time is never the gzip'd length, always that from the disk, as this module and below does not gzip compression, so I'm not sure why you'd have to worry about getting the gzip'd length.

But even then, it looks like you just want to do something using the file's stat, which is actually the third argument. Could you do this?

setHeaders: function(res, path, stat) {
  res.set('X-Raw-Length', stat.size)
}

from serve-static.

amasad avatar amasad commented on May 17, 2024

I use the compression module and the Content-Length is the gzip'd length. Also generally Content-Length wouldn't be reliable for my use case because some files would be streamed (Transfer-Encoding:chunked).

But this works perfectly! Thanks for the super quick reply. I'll update the documentation to add the stat arg.

from serve-static.

dougwilson avatar dougwilson commented on May 17, 2024

Ah. I took a closer look into the send module and see that it doesn't even set the Content-Length until after the setHeaders anyway (this isn't really an issue, because, really, it's for setting headers in a particular pipeline, not really for altering headers).

Ans the reason it's sync instead of async is because send is a stream and this function is run as a EE listener, and EE listeners are only sync in Node.js, there is no async version of listeners, haha.

But thanks for the docs contribution, and I'm glad we could solve your problem with something that was just accidentally not documented (it's documented all the way down in send module)!

from serve-static.

amasad avatar amasad commented on May 17, 2024

Happy to help. These projects are getting even better than last time I used them. You seem to run a tight ship :)

from serve-static.

Related Issues (20)

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.