Git Product home page Git Product logo

Comments (8)

kitsonk avatar kitsonk commented on August 22, 2024

Yeah it presumes there is always a body, which isn't a good assumption.

from oak.

bartlomieju avatar bartlomieju commented on August 22, 2024

I did some digging and it seems oak is handling empty body properly:

async listen(addr: string): Promise<void> {
    const middleware = compose<Context<S>, S>(this._middleware);
    const server = this._serve(addr);
    for await (const request of server) {
      const context = new Context<S>(this, request);
      await middleware(context);
      console.log('post middleware');
      const srvRes = context.response.toServerResponse();
      console.log('post src res', srvRes);
      await request.respond(srvRes);
      console.log('responded');
    }
  }

If you respond with empty body responded is printed to console, I suspect problem is in serve from deno_std. TBC

from oak.

bartlomieju avatar bartlomieju commented on August 22, 2024

Sorry @kitsonk, this is issue from deno_std. denoland/std#52

from oak.

kitsonk avatar kitsonk commented on August 22, 2024

Yeah. I had narrowed it down to there too. Let's leave this open, because will need to bump the dep once resolved.

from oak.

kitsonk avatar kitsonk commented on August 22, 2024

Actually we can set content-length to 0 in oak.

from oak.

bartlomieju avatar bartlomieju commented on August 22, 2024

I think it's a good idea, will get it working for now. I'll see to proper handling in standard lib.

from oak.

kitsonk avatar kitsonk commented on August 22, 2024

Yeah, I think in the toServerResponse is the content-length is missing and there is no content-encoding and no body, the setting it should be fine. I think if there is user set content-encoding then they may be doing something like streaming a file.

Based on that, it is arguable if http should std should actually support it as really it should leave all those concerns up to implementors.

from oak.

bartlomieju avatar bartlomieju commented on August 22, 2024

Agreed, but as we can see now if body is not supplied server just hangs, I believe http.serve should handle such cases nevertheless instead of hanging. I'll just implement it anyway 👍

from oak.

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.