Giter Site home page Giter Site logo

Missing request data events about cors HOT 5 CLOSED

expressjs avatar expressjs commented on April 26, 2024
Missing request data events

from cors.

Comments (5)

troygoode avatar troygoode commented on April 26, 2024

This was actually implemented specifically so that data events wouldn't go missing, if someone was using the async version of the cors options setup. In older versions of node.js (prior to 0.10) .pause() and .resume() were necessary to prevent loss of data events of a stream between ticks.

Are you still running into this problem?

from cors.

Floby avatar Floby commented on April 26, 2024

I'm running into this problem as well

I'm using this module for static/sync cors headers before proxying to a couchDB url but it still consumes my request. I can understand the pause() calls, but I have a harder time understanding why resume() is called.

Anyway, this is not the recommended way of doing things in node >=0.10. pause() and resume() cause the request to switch to old streams mode and thus consuming the stream before I get a chance to use it. Most importantly, it causes this fix (nodejs/node-v0.x-archive#4969) to be unefficient.

Since i'm using request to do one-line proxying, I have some lines like this down the middleware chain.

req.pipe(request(url)).pipe(res)

since req is already consumed (and has already emitted 'end'), it causes my service to hang on this particular request. (yes i'm piping req even though it's a GET request, but this way request can use the clients cache-control headers and pass them through).

I can see several fixes for this.

  1. don't call pause()/resume() when cors is in sync mode
  2. don't call pause()/resume() at all, since it's hardly cors responsibility to worry about the body of a request
  3. only use streams2 API.

my fix for my own problem for now is to remove cors altogether and set my static header myself =)

from cors.

troygoode avatar troygoode commented on April 26, 2024

Let me look into this.

from cors.

troygoode avatar troygoode commented on April 26, 2024

I've removed pause and resume and specified 0.10 as the minimum required version of node.js.

from cors.

Floby avatar Floby commented on April 26, 2024

Thanks!
Le 5 juil. 2014 20:48, "Troy Goode" [email protected] a Γ©crit :

I've removed pause and resume and specified 0.10 as the minimum required
version of node.js.

β€”
Reply to this email directly or view it on GitHub
#6 (comment).

from cors.

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.