Giter Club home page Giter Club logo

Comments (2)

elbywan avatar elbywan commented on June 8, 2024 1

Hey @NetroScript,

I think that the issue could be related to the way node-fetch implements response cloning which is used under the hood by the retry middleware.

Could you try to increase the highWaterMark as described in their documentation?

https://github.com/node-fetch/node-fetch#custom-highwatermark

from wretch-middlewares.

NetroScript avatar NetroScript commented on June 8, 2024

This does indeed fix the problem.

But should someone in the future also have the same problem I will also describe the solution I now have:

I am using TypeScript and I am using commonjs. This means I couldn't import node-fetch@3 the default way (due to it not working with require in the TS output) and was just using version 2 before. (But version 3 is needed as only starting with that version highWaterMark was added).

To be able to use version 3 with my setup, I had to use the following code in my async bootstrapping function:

async function bootstrap() {
  // If NodeJS supports the fetch function, we do not need to import it
  if (typeof fetch == 'undefined') {
    const _importDynamic = new Function(
      'modulePath',
      'return import(modulePath)',
    );
    const { default: fetch } = await _importDynamic('node-fetch');
    global.fetch = fetch;
  }
  ....
}

bootstrap();

And the final function looking like this works without problems:

    const data = await wretch(
      url,
      {
        highWaterMark: 1024 * 1024,
      },
    )
      .middlewares([retry()])
      .get()
      .json();

from wretch-middlewares.

Related Issues (9)

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.